This repository has been archived by the owner on Feb 28, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathtslint.json
64 lines (64 loc) · 1.48 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
{
"extends": "tslint-config-standard",
"rulesDirectory": [
"./conf/tslint"
],
"rules": {
"no-consecutive-blank-lines": false,
"func-method-return-type": true,
"await-promise": false,
"no-use-before-declare": false,
"return-undefined": false,
"no-floating-promises": false,
"no-unnecessary-qualifier": false,
"strict-type-predicates": false,
"indent": [
true,
"spaces"
],
"triple-equals": true,
"ter-indent": [
true,
4,
{
"SwitchCase": 1
}
],
"space-before-function-paren": [
true,
{
"anonymous": "never",
"named": "never",
"asyncArrow": "always",
"method": "never",
"constructor": "never"
}
],
"typedef": [
true,
"property-declaration",
"call-signature",
"variable-declaration"
],
"semicolon": [
true,
"always"
],
"quotemark": [
true,
"single",
"avoid-escape"
],
"no-empty": false,
"no-debugger": true,
"no-null-keyword": true,
"curly": true,
"no-console": [
true,
"debug",
"log",
"warn",
"info"
]
}
}