-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.eslintrc.json
41 lines (41 loc) · 1.04 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
{
"env": {
"es2020": true,
"node": true
},
"extends": "eslint:recommended",
"parserOptions": {
"ecmaVersion": 2020,
"sourceType": "script"
},
"rules": {
"indent": [
"warn", 4,
{ "SwitchCase": 1 }
],
"operator-linebreak": [
"warn",
"before",
{ "overrides":
{
"?": "after",
":": "before"
}
}
],
"semi": ["warn", "always"],
"no-unused-expressions": "warn",
"no-unused-vars": "warn",
"no-console": "warn",
"no-empty": "warn",
"valid-typeof": "warn",
"max-len": ["warn", {
"code": 120,
"comments": 90,
"ignoreTrailingComments": true,
"ignorePattern": "^//\\s*"
}],
"space-in-parens": ["warn", "never"],
"object-curly-spacing": ["warn", "always", { "arraysInObjects": true, "objectsInObjects": true }]
}
}