Browse Source

Remove lint from fixtures

Kevin Sawicki 8 years ago
parent
commit
600076b46d

+ 1 - 1
spec/fixtures/module/export-function-with-properties.js

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

+ 1 - 1
spec/fixtures/module/function-with-properties.js

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

+ 2 - 2
spec/fixtures/module/remote-static.js

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