-
Notifications
You must be signed in to change notification settings - Fork 1
/
tslint.json
41 lines (41 loc) · 999 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
36
37
38
39
40
41
{
"rules": {
"class-name": true,
"no-var-keyword": true,
"no-use-before-declare": false,
"no-console": [
true
],
"no-reference": true,
"no-internal-module": true,
"no-arg": true,
"no-bitwise": true,
"no-conditional-assignment": true,
"no-construct": true,
"no-debugger": true,
"no-duplicate-variable": true,
"no-empty": true,
"no-eval": true,
"no-invalid-this": [
true,
"check-function-in-method"
],
"no-string-literal": true,
"no-switch-case-fall-through": true,
"triple-equals": [
true,
"allow-undefined-check",
"allow-null-check"
],
"switch-default": false,
"use-isnan": true,
"max-line-length": [
true,
120
],
"max-file-line-count": [
true,
500
]
}
}