-
Notifications
You must be signed in to change notification settings - Fork 5
/
.eslintrc.json
80 lines (80 loc) · 2.48 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
{
"env": {
"es6": true,
"node": true
},
"extends": ["eslint:recommended"],
"parserOptions": {
"sourceType": "module",
"ecmaVersion": 2020
},
"rules": {
"no-await-in-loop": "error",
"no-shadow": "error",
"no-redeclare": "warn",
"arrow-spacing": "warn",
"init-declarations": ["error", "always"],
"no-setter-return": "warn",
"no-duplicate-imports": "warn",
"no-unused-vars": ["warn", { "args": "none" }],
"no-const-assign": "error",
"no-import-assign": "error",
"space-unary-ops": ["error", { "words": true, "nonwords": false }],
"quote-props": ["error", "always"],
"no-unneeded-ternary": "error",
"rest-spread-spacing": ["error", "never"],
"no-param-reassign": "warn",
"no-self-compare": "error",
"prefer-object-spread": "warn",
"indent": ["warn", "tab", { "SwitchCase": 1 }],
"quotes": ["error", "double"],
"semi": ["error", "always"],
"no-lone-blocks": "error",
"no-multi-str": "error",
"no-path-concat": "error",
"no-process-exit": "error",
"no-lonely-if": "error",
"no-spaced-func": "warn",
"no-confusing-arrow": "error",
"prefer-template": "error",
"no-constant-condition": "error",
"arrow-body-style": ["warn", "as-needed"],
"no-var": "error",
"no-nested-ternary": "warn",
"no-multiple-empty-lines": "warn",
"no-template-curly-in-string": "error",
"no-empty-function": "warn",
"no-empty": ["error", { "allowEmptyCatch": true }],
"no-floating-decimal": "error",
"no-multi-spaces": "warn",
"guard-for-in": "error",
"yoda": "error",
"array-callback-return": "error",
"no-dupe-else-if": "error",
"vars-on-top": "warn",
"func-call-spacing": "warn",
"no-eval": "error",
"brace-style": ["warn", "1tbs", { "allowSingleLine": true }],
"use-isnan": "error",
"comma-dangle": ["warn", "never"],
"comma-spacing": "warn",
"comma-style": "warn",
"dot-location": ["error", "property"],
"handle-callback-err": "off",
"max-nested-callbacks": ["error", { "max": 4 }],
"max-statements-per-line": ["error", { "max": 4 }],
"no-console": "off",
"no-trailing-spaces": ["warn"],
"object-curly-spacing": ["warn", "always"],
"array-bracket-spacing": ["warn", "never"],
"prefer-const": "error",
"space-in-parens": "warn",
"space-infix-ops": "warn",
"spaced-comment": "warn",
"space-before-blocks": "warn",
"space-before-function-paren": ["warn", { "anonymous": "never", "named": "never", "asyncArrow": "always" }],
"keyword-spacing": ["warn", { "before": true, "after": true }],
"key-spacing": "warn"
},
"globals": {}
}