forked from jaredhanson/passport
-
-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added eslint configuration, and fixed a pletora of lint errors
- Loading branch information
Iyanu-Tomiwa
committed
Sep 15, 2018
1 parent
424905b
commit d53ff7d
Showing
37 changed files
with
5,391 additions
and
3,367 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
.git | ||
coverage/ | ||
node_modules/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
module.exports = { | ||
env: { | ||
// jest: true, | ||
mocha: true, | ||
node: true, | ||
}, | ||
extends: [ | ||
'airbnb-base', | ||
], | ||
plugins: [ | ||
// 'jest' | ||
], | ||
rules: { | ||
"comma-dangle": 0, | ||
"no-underscore-dangle": 0, | ||
"no-param-reassign": 0, | ||
"prefer-destructuring": 0, | ||
// 'jest/no-disabled-tests': [2], | ||
// 'jest/no-focused-tests': [2], | ||
// 'jest/no-identical-title': [2], | ||
// 'jest/prefer-to-have-length': [2], | ||
// 'jest/valid-expect': [2], | ||
} | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.