-
Notifications
You must be signed in to change notification settings - Fork 2
/
tslint.json
36 lines (36 loc) · 1.2 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
{
"rules": {
"await-promise": true,
"ban-comma-operator": true,
"curly": true,
"no-bitwise": true,
"no-conditional-assignment": true,
"no-construct": true,
"no-duplicate-super": true,
"no-duplicate-switch-case": true,
"no-duplicate-variable": [true, "check-parameters"],
"no-floating-promises": true,
"no-for-in-array": true,
"no-invalid-template-strings": true,
"no-invalid-this": [true, "check-function-in-method"],
"no-misused-new": true,
"no-parameter-reassignment": true,
"no-shadowed-variable": true,
"no-sparse-arrays": true,
"no-switch-case-fall-through": true,
"no-unbound-method": true,
"no-unsafe-finally": true,
"no-unused-expression": true,
"use-isnan": true,
"deprecation": true,
"prefer-const": true,
"class-name": true,
"encoding": true,
"file-name-casing": [true, "pascal-case"],
"new-parens": true,
"no-irregular-whitespace": true,
"semicolon": [true, "always", "ignore-bound-class-methods"],
"type-literal-delimiter": true,
"variable-name": [true, "ban-keywords", "check-format", "allow-leading-underscore"]
}
}