Remove lint from fixtures
This commit is contained in:
parent
d333cc5e38
commit
600076b46d
3 changed files with 4 additions and 4 deletions
|
@ -1,4 +1,4 @@
|
|||
function foo() {}
|
||||
function foo () {}
|
||||
foo.bar = 'baz'
|
||||
|
||||
module.exports = foo
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
function foo() {}
|
||||
function foo () {}
|
||||
foo.bar = 'baz'
|
||||
foo.nested = {
|
||||
prop: 'yes'
|
||||
|
|
4
spec/fixtures/module/remote-static.js
vendored
4
spec/fixtures/module/remote-static.js
vendored
|
@ -1,9 +1,9 @@
|
|||
class Foo {
|
||||
static foo() {
|
||||
static foo () {
|
||||
return 3
|
||||
}
|
||||
|
||||
baz() {
|
||||
baz () {
|
||||
return 123
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue