forked from filmon-goitom/welcome-to-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc.json
73 lines (71 loc) · 1.55 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"plugins": ["prettier", "sonarjs"],
"env": {
"browser": false
},
"parserOptions": {
"ecmaVersion": 2021,
"sourceType": "script"
},
"globals": {
"prompt": false,
"alert": false,
"confirm": false,
"console": false
},
"extends": [
"eslint:recommended",
"prettier",
"airbnb-base",
"plugin:sonarjs/recommended"
],
"rules": {
"no-var": 1,
"prefer-const": 0,
"no-extra-parens": 1,
"no-unreachable-loop": 1,
"eqeqeq": 2,
"no-implicit-coercion": 1,
"no-implicit-globals": 1,
"no-lone-blocks": 1,
"no-return-assign": 1,
"no-unused-expressions": 1,
"no-useless-computed-key": 1,
"no-useless-rename": 1,
"no-label-var": 1,
"no-shadow": 1,
"no-undefined": 1,
"arrow-parens": 1,
"arrow-body-style": 0,
"no-confusing-arrow": 1,
"vars-on-top": 0,
"no-plusplus": 0,
"guard-for-in": 0,
"no-unmodified-loop-condition": 0,
"no-warning-comments": 1,
"prefer-destructuring": 1,
"no-nested-ternary": 0,
"no-empty": 0,
"no-alert": 0,
"no-console": 0,
"no-continue": 0,
"prefer-template": 0,
"no-constant-condition": 0,
"operator-linebreak": 0,
"strict": [2, "global"],
"no-restricted-globals": 0,
"operator-assignment": 0,
"no-restricted-syntax": [
0,
{
"selector": "ForInStatement"
},
{
"selector": "ForOfStatement"
}
],
"camelcase": [2, { "properties": "never" }],
"prettier/prettier": ["error"],
"sonarjs/prefer-immediate-return": 0
}
}