-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path.eslintrc.js
68 lines (67 loc) · 2.15 KB
/
.eslintrc.js
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
module.exports = {
env: {
es2022: true,
},
rules: {
"semi": ["error", "always", { omitLastInOneLineBlock: true }],
"quotes": ["error", "double"],
"indent": ["error", 2, { SwitchCase: 1 }],
"complexity": ["error", 2],
"array-callback-return": ["error", { checkForEach: true }],
"max-depth": ["error", 2],
"max-statements": ["error", 10],
"no-cond-assign": "error",
"no-empty": "warn",
"no-console": "warn",
"no-implicit-coercion": "warn",
"no-implicit-globals": "error",
"no-param-reassign": "error",
"no-shadow": "error",
"id-denylist": ["error", "data", "callback"],
"no-extra-semi": "error",
"array-callback-return": ["error"],
"key-spacing": ["error"],
"array-callback-return": ["error", { checkForEach: true }],
"no-cond-assign": "error",
"no-sparse-arrays": "warn",
"camelcase": "warn",
"default-param-last": "error",
"dot-notation": "warn",
"eqeqeq": "warn",
"max-depth": ["warn", 3],
"max-statements": "warn",
"no-extra-semi": "warn",
"no-nested-ternary": "warn",
"no-undef-init": "warn",
"no-useless-escape": "warn",
"comma-spacing": ["warn", { before: false, after: true }],
"max-len": "error",
"complexity": ["warn", 3],
"comma-spacing": ["error"],
"no-multi-spaces": ["error"],
"no-param-reassign": ["error"],
"no-extra-semi": ["error"],
"prefer-const": ["error"],
"prefer-destructuring": ["error"],
"max-depth": ["error", 2],
"max-params": ["error", 4],
"no-extra-semi": ["error"],
"no-use-before-define": ["error"],
"no-this-before-super": ["error"],
"max-statements": ["error", 10],
"max-nested-callbacks": ["error", { max: 2 }],
"no-else-return": "error",
"object-shorthand": "error",
"array-callback-return": ["error", { checkForEach: true }],
"prefer-template": "warn",
"no-useless-concat": "error",
"func-style": ["error", "expression"],
"prefer-rest-params": "error",
"for-direction": "error",
"no-cond-assign": "error",
"id-length": [
"error",
{ exceptions: ["a", "b", "x", "y", "z", "id", "#id"], min: 3, max: 28 },
],
},
};