-
Notifications
You must be signed in to change notification settings - Fork 1
/
.eslintrc.json
100 lines (100 loc) · 2.33 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
{
"env": {
"commonjs": true,
"es6": true,
"node": true,
"mocha": true,
"browser": true,
"jquery": true
},
"extends": "eslint:recommended",
"globals": {
"Atomics": "readonly",
"SharedArrayBuffer": "readonly"
},
"parserOptions": {
"ecmaVersion": 2018
},
"rules": {
"indent": ["error", 2],
"quotes": ["error", "single"],
"linebreak-style": ["error", "unix"],
"semi": ["error", "always"],
"camelcase": "error",
"class-methods-use-this": "warn",
"array-bracket-spacing": ["error"],
"comma-spacing": "error",
"arrow-spacing": "error",
"no-var": "error",
"curly": "error",
"brace-style": "error",
"eol-last": "warn",
"eqeqeq": "warn",
"getter-return": "error",
"grouped-accessor-pairs": "warn",
"global-require": "error",
"handle-callback-err": "error",
"id-length": "error",
"key-spacing": "error",
"max-len": "error",
"max-params": [
"error",
{
"max": 4
}
],
"max-statements": "error",
"no-console": "error",
"no-else-return": "error",
"no-eval": "error",
"no-implicit-globals": "error",
"prefer-const": "error",
"no-magic-numbers": "error",
"no-process-exit": "error",
"no-process-env": "error",
"no-return-assign": "error",
"no-useless-return": "error",
"max-depth": "error",
"no-mixed-operators": "error",
"complexity": ["error", 4],
"no-extra-parens": "error",
"no-template-curly-in-string": "error",
"array-callback-return": "error",
"default-param-last": "error",
"no-constructor-return": "error",
"no-invalid-this": "error",
"no-lone-blocks": "error",
"no-loop-func": "error",
"no-proto": "error",
"prefer-spread": "warn",
"no-useless-call": "error",
"no-param-reassign": "error",
"space-infix-ops": "error",
"no-multi-spaces": "error",
"semi-spacing": "error",
"no-multiple-empty-lines": [
"error",
{
"max": 1
}
]
},
"overrides": [
{
"files": ["test*.js"],
"rules": {
"max-len": "warn",
"no-magic-numbers": "off",
"max-statements": "off"
}
},
{
"files": ["**/js/*.js"],
"rules": {
"max-len": "warn",
"no-unused-vars": "off",
"no-magic-numbers": "off"
}
}
]
}