-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtslint.json
56 lines (56 loc) · 1.12 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
{
"extends": "tslint:recommended",
"rules": {
"max-line-length": [
false,
340
],
"no-console": false,
"arrow-parens": [
"ban-single-arg-parens"
],
"curly": false,
"member-access": false,
"member-ordering": false,
"variable-name": [
true,
"check-format",
"ban-keywords",
"allow-leading-underscore"
],
"ordered-imports": false,
"object-literal-sort-keys": false,
"no-bitwise": false,
"no-string-throw": false,
"max-classes-per-file": [
false
],
"interface-name": false,
"await-promise": true,
"no-reference": false,
"no-var-keyword": true,
"no-unused-variable": true,
"radix": false,
"no-namespace": false,
"arrow-return-shorthand": [
true,
"multiline"
],
"class-name": true,
"import-spacing": true,
"no-eval": false,
"prefer-switch": false,
"no-var-requires": false,
"prefer-template": [
true,
"allow-single-concat"
],
"trailing-comma": [
false,
{
"multiline": "always",
"singleline": "never"
}
]
}
}