-
-
Notifications
You must be signed in to change notification settings - Fork 56
/
.eslintrc.json
43 lines (43 loc) · 1.07 KB
/
.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
38
39
40
41
42
43
{
"extends": [
"airbnb-base",
"plugin:n/recommended",
"plugin:unicorn/recommended",
"plugin:@eslint-community/eslint-comments/recommended"
],
"plugins": ["n", "unicorn"],
"parserOptions": {
"ecmaVersion": "latest",
"sourceType": "module"
},
"rules": {
"max-len": 0,
"no-param-reassign": 0,
"no-shadow": 0,
"no-console": 0,
"no-use-before-define": 0,
"implicit-arrow-linebreak": 0,
"no-underscore-dangle": ["error", { "allow": ["_normalizeDomain"] }],
"import/extensions": 0,
"unicorn/prevent-abbreviations": 0,
"unicorn/no-null": 0,
"unicorn/import-style": 0,
"unicorn/no-array-for-each": 0,
"unicorn/catch-error-name": ["error", { "name": "e" }],
"@eslint-community/eslint-comments/no-unused-disable": "error"
},
"overrides": [
{
"files": ["test/{,**}/*.?(c)js"],
"extends": ["plugin:mocha/recommended"],
"plugins": ["mocha"],
"env": {
"mocha": true
},
"rules": {
"global-require": 0,
"mocha/no-mocha-arrows": 0
}
}
]
}