mirror of
https://github.com/BradNut/graphbrainz
synced 2025-09-08 17:40:32 +00:00
Fix eslintignore
This commit is contained in:
parent
6d22f0c5b6
commit
37447d1a41
2 changed files with 9 additions and 9 deletions
|
|
@ -1,3 +1,4 @@
|
||||||
/.nyc_output
|
/.nyc_output
|
||||||
/coverage
|
/coverage
|
||||||
/lib
|
/lib
|
||||||
|
!.eslintrc.js
|
||||||
|
|
|
||||||
17
.eslintrc.js
17
.eslintrc.js
|
|
@ -1,18 +1,17 @@
|
||||||
module.exports = {
|
module.exports = {
|
||||||
extends: [
|
extends: ['standard', 'prettier', 'prettier/standard'],
|
||||||
'standard',
|
|
||||||
'prettier',
|
|
||||||
'prettier/standard'
|
|
||||||
],
|
|
||||||
env: {
|
env: {
|
||||||
es6: true,
|
es6: true,
|
||||||
node: true
|
node: true
|
||||||
},
|
},
|
||||||
plugins: ['prettier'],
|
plugins: ['prettier'],
|
||||||
rules: {
|
rules: {
|
||||||
'prettier/prettier': ['error', {
|
'prettier/prettier': [
|
||||||
singleQuote: true,
|
'error',
|
||||||
semi: false
|
{
|
||||||
}]
|
singleQuote: true,
|
||||||
|
semi: false
|
||||||
|
}
|
||||||
|
]
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue