-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtslint.json
35 lines (35 loc) · 938 Bytes
/
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
{
"rules": {
"adjacent-overload-signatures": true,
"no-namespace": true,
"prefer-for-of": true,
"await-promise": true,
"forin": true,
"no-arg": true,
"no-conditional-assignment": true,
"no-debugger": true,
"no-duplicate-super": true,
"no-duplicate-imports": true,
"no-duplicate-variable": true,
"no-eval": true,
"no-floating-promises": true,
"no-for-in-array": true,
"no-unsafe-finally": true,
"no-unused-expression": true,
"no-unused-variable": true,
"no-use-before-declare": true,
"no-var-keyword": true,
"radix": true,
"typeof-compare": true,
"use-isnan": true,
"cyclomatic-complexity": true,
"deprecation": true,
"eofline": true,
"indent": [true, "spaces"],
"linebreak-style": [true, "lf"],
"prefer-const": true,
"array-type": [true, "array"],
"encoding": true,
"no-angle-bracket-type-assertion": true
}
}