-
Notifications
You must be signed in to change notification settings - Fork 1
/
tslint.json
50 lines (50 loc) · 1.15 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
44
45
46
47
48
49
50
{
"rules": {
"class-name": true,
"comment-format": [true,
"check-space"
],
"jsdoc-format": true,
"label-position": true,
"label-undefined": true,
"no-arg": true,
"no-construct": true,
"no-debugger": true,
"no-duplicate-key": true,
"no-eval": true,
"no-trailing-comma": true,
"no-trailing-whitespace": true,
"no-unused-expression": true,
"no-unused-variable": true,
"no-unreachable": true,
"no-var-requires": true,
"one-line": [true,
"check-open-brace",
"check-catch",
"check-else",
"check-whitespace"
],
"quotemark": [true, "single"],
"radix": true,
"semicolon": true,
"triple-equals": [true, "allow-null-check"],
"typedef": [true,
"indexSignature",
"propertySignature"
],
"typedef-whitespace": [true,
["callSignature", "noSpace"],
["catchClause", "noSpace"],
["indexSignature", "space"]
],
"variable-name": [true,
"allow-leading-underscore"
],
"whitespace": [true,
"check-branch",
"check-decl",
"check-separator",
"check-type"
]
}
}