Remove lint from fixtures

This commit is contained in:
Kevin Sawicki 2016-08-16 10:54:16 -07:00
parent d333cc5e38
commit 600076b46d
3 changed files with 4 additions and 4 deletions

View file

@ -1,4 +1,4 @@
function foo() {}
function foo () {}
foo.bar = 'baz'
module.exports = foo

View file

@ -1,4 +1,4 @@
function foo() {}
function foo () {}
foo.bar = 'baz'
foo.nested = {
prop: 'yes'

View file

@ -1,9 +1,9 @@
class Foo {
static foo() {
static foo () {
return 3
}
baz() {
baz () {
return 123
}
}