Skip to content

Commit

Permalink
Fix eslintignore
Browse files Browse the repository at this point in the history
  • Loading branch information
exogen committed Nov 19, 2017
1 parent 6d22f0c commit 37447d1
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 9 deletions.
1 change: 1 addition & 0 deletions .eslintignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
/.nyc_output
/coverage
/lib
!.eslintrc.js
17 changes: 8 additions & 9 deletions .eslintrc.js
Original file line number Diff line number Diff line change
@@ -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
}
]
}
}

0 comments on commit 37447d1

Please sign in to comment.