-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy path.eslintrc.json
60 lines (60 loc) · 1.75 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
{
"root": true,
"env": {
"node": true
},
"parser": "@typescript-eslint/parser",
"plugins": ["@typescript-eslint"],
"extends": [
"eslint:recommended",
"plugin:@typescript-eslint/recommended",
"prettier"
],
"parserOptions": {
"project": "./tsconfig.test.json"
},
"rules": {
"default-case": ["error"],
"guard-for-in": ["error"],
"no-caller": ["error"],
"no-eval": ["error"],
"no-extend-native": ["error"],
"no-extra-bind": ["error"],
"no-implied-eval": ["error"],
"no-invalid-this": ["error"],
"no-labels": ["error"],
"no-lone-blocks": ["error"],
"no-loop-func": ["error"],
"no-param-reassign": ["error"],
"no-restricted-properties": ["error"],
"no-return-assign": ["error"],
"no-self-compare": ["error"],
"no-sequences": ["error"],
"no-throw-literal": ["error"],
"no-unmodified-loop-condition": ["error"],
"no-unused-expressions": ["error", { "allowShortCircuit": true }],
"no-useless-call": ["error"],
"no-useless-concat": ["error"],
"no-useless-escape": ["error"],
"no-void": ["error"],
"no-with": ["error"],
"radix": ["error", "always"],
"no-catch-shadow": ["error"],
"no-shadow": ["error"],
"no-shadow-restricted-names": ["error"],
"callback-return": ["error"],
"global-require": ["error"],
"no-mixed-requires": ["error"],
"handle-callback-err": ["error"],
"no-new-require": ["error"],
"no-path-concat": ["error"],
"no-process-exit": ["error"],
"camelcase": ["error"],
"no-bitwise": ["error"],
"no-multi-assign": ["error"],
"one-var": ["error", "never"],
"spaced-comment": ["error", "always"],
"@typescript-eslint/no-namespace": "off",
"@typescript-eslint/no-explicit-any": "off"
}
}