-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtslint.json
43 lines (43 loc) · 1.16 KB
/
tslint.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
{
"rules": {
"no-unused-variable": true,
"class-name": true,
"curly": true,
"no-internal-module": true,
"no-var-keyword": true,
"variable-name": [true, "check-format", "ban-keywords"],
"prefer-for-of": true,
"promise-function-async": true,
"await-promise": [true, "Thenable"],
"no-bitwise": true,
"no-conditional-assignment": true,
"no-construct": true,
"no-duplicate-super": true,
"no-duplicate-variable": true,
"no-empty": true,
"no-eval": true,
"no-floating-promises": true,
"no-for-in-array": true,
"no-invalid-template-strings": true,
"no-invalid-this": true,
"no-misused-new": true,
"no-object-literal-type-assertion": true,
"no-sparse-arrays": true,
"no-string-throw": true,
"no-switch-case-fall-through": true,
"prefer-conditional-expression": true,
"prefer-object-spread": true,
"radix": true,
"cyclomatic-complexity": [true, 20],
"prefer-const": true,
"array-type": [true, "array"],
"no-boolean-literal-compare": true,
"prefer-switch": true,
"ordered-imports": [
false,
{
"grouped-imports": true
}
]
}
}