-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: upgrade eslint and configuration
- Loading branch information
1 parent
a79e21c
commit d13e880
Showing
3 changed files
with
6,681 additions
and
10,200 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 |
---|---|---|
@@ -1,14 +1,18 @@ | ||
{ | ||
"extends": ["node"], | ||
"plugins": [ | ||
"jest" | ||
], | ||
"extends": "eslint:recommended", | ||
"plugins": ["jest"], | ||
"env": { | ||
"node": true, | ||
"es6": true, | ||
"jest": true | ||
}, | ||
"parserOptions": { | ||
"ecmaVersion": "latest", | ||
"sourceType": "module" | ||
}, | ||
"rules": { | ||
"no-console": 0, | ||
"import/no-nodejs-modules": 0, | ||
"import/no-commonjs": 0 | ||
} | ||
} | ||
} |
Oops, something went wrong.