-
Notifications
You must be signed in to change notification settings - Fork 200
/
.eslintrc.json
37 lines (37 loc) · 935 Bytes
/
.eslintrc.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
{
"extends": [
"eslint:recommended",
"plugin:promise/recommended",
"plugin:node/recommended",
"plugin:unicorn/recommended",
"prettier"],
"rules": {
"no-console": 0,
"quotes": [1, "single"],
"unicorn/prefer-module": 0,
"unicorn/import-style": 0,
"unicorn/prevent-abbreviations": 0,
"unicorn/catch-error-name": 0,
"unicorn/prefer-string-slice": "warn",
"unicorn/no-array-for-each": 0,
"unicorn/no-object-as-default-parameter": 0,
"unicorn/no-null": 0,
"unicorn/explicit-length-check": 0,
"unicorn/numeric-separators-style": 0,
"mocha/max-top-level-suites": 0,
"mocha/no-hooks-for-single-case": 0
},
"plugins": ["promise", "node", "unicorn"],
"parserOptions": {
"ecmaVersion": 2021,
"ecmaFeatures": {
"impliedStrict": true
}
},
"env": {
"es6": true,
"commonjs": true,
"node": true,
"mocha": true
}
}