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
|
||||
/coverage
|
||||
/lib
|
||||
!.eslintrc.js
|
||||
|
|
|
|||
17
.eslintrc.js
17
.eslintrc.js
|
|
@ -1,18 +1,17 @@
|
|||
module.exports = {
|
||||
extends: [
|
||||
'standard',
|
||||
'prettier',
|
||||
'prettier/standard'
|
||||
],
|
||||
extends: ['standard', 'prettier', 'prettier/standard'],
|
||||
env: {
|
||||
es6: true,
|
||||
node: true
|
||||
},
|
||||
plugins: ['prettier'],
|
||||
rules: {
|
||||
'prettier/prettier': ['error', {
|
||||
singleQuote: true,
|
||||
semi: false
|
||||
}]
|
||||
'prettier/prettier': [
|
||||
'error',
|
||||
{
|
||||
singleQuote: true,
|
||||
semi: false
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue