-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathtslint.json
37 lines (37 loc) · 811 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
{
"rules": {
"class-name": true,
"comment-format": [
true,
"check-space"
],
"curly": true,
"eofline": true,
"indent": [true, "spaces"],
"label-position": true,
"label-undefined": true,
"member-access": true,
"member-ordering": [
true,
"variables-before-functions"
],
"no-arg": true,
"no-duplicate-key": true,
"no-duplicate-variable": true,
"no-string-literal": true,
"no-switch-case-fall-through": true,
"no-trailing-whitespace": true,
"no-unreachable": true,
"no-unused-variable": true,
"no-use-before-declare": true,
"one-line": [
true,
"check-catch",
"check-else",
"check-whitespace"
],
"quotemark": [true, "single"],
"radix": true,
"semicolon": false
}
}