-
Notifications
You must be signed in to change notification settings - Fork 194
/
tslint.json
51 lines (51 loc) · 1010 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
42
43
44
45
46
47
48
49
50
51
{
"rules": {
"class-name": false,
"curly": false,
"eofline": false,
"forin": false,
"indent": [false, 4],
"label-position": false,
"label-undefined": false,
"max-line-length": [false, 140],
"no-arg": true,
"no-bitwise": false,
"no-console": [true,
"debug",
"info",
"time",
"timeEnd",
"trace"
],
"no-construct": false,
"no-debugger": true,
"no-duplicate-key": false,
"no-duplicate-variable": false,
"no-empty": false,
"no-eval": true,
"no-string-literal": false,
"no-trailing-comma": false,
"no-trailing-whitespace": false,
"no-unused-variable": false,
"no-unreachable": true,
"no-use-before-declare": false,
"one-line": [false,
"check-open-brace",
"check-catch",
"check-else",
"check-whitespace"
],
"quotemark": [false, "double"],
"radix": false,
"semicolon": false,
"triple-equals": [false, "allow-null-check"],
"variable-name": false,
"whitespace": [false,
"check-branch",
"check-decl",
"check-operator",
"check-separator",
"check-type"
]
}
}