-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.eslintrc.json
46 lines (46 loc) · 984 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
38
39
40
41
42
43
44
45
46
{
"root": true,
"env": {
"mongo": true,
"browser": true,
"commonjs": true,
"es2020": true,
"node": true,
"jest": true
},
"extends": "airbnb-base",
"parserOptions": {
"ecmaVersion": 11
},
"plugins": [
"sonarjs"
],
"rules": {
"max-params": ["error", 4],
"max-lines": ["error", 250],
"sonarjs/cognitive-complexity": "error",
"max-lines-per-function": ["error", 25],
"max-depth": ["error", 4],
"sonarjs/no-identical-functions": "error",
"no-console": "off",
"no-alert": "off",
"arrow-parens": [
"error",
"always"
],
"jsx-a11y/label-has-associated-control": 0,
"quotes": [2, "double"],
"complexity": "error",
"implicit-arrow-linebreak": "off",
"consistent-return": "off",
"no-unused-vars": [
"error",
{
"argsIgnorePattern": "^_",
"ignoreRestSiblings": true
}
],
"object-curly-newline": "off",
"no-undef": "off"
}
}