-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtslint.json
78 lines (77 loc) · 2.39 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"extends": "tslint:recommended",
"rules": {
"max-line-length": {
"options": [200]
},
"no-consecutive-blank-lines": false,
"promise-function-async": true,
"typedef": [
true,
"call-signature",
"arrow-call-signature",
"arrow-parameter",
"property-declaration",
"variable-declaration",
"parameter",
"member-variable-declaration",
"object-destructuring",
"array-destructuring"
],
"ban-comma-operator": true,
"curly": true,
"no-this-assignment": true,
"use-default-type-parameter": true,
"import-spacing": true,
"no-irregular-whitespace": true,
"trailing-comma": [
true,
{
"multiline": "never",
"singleline": "never"
}
],
"no-console": true,
"no-implicit-dependencies": true,
"no-any": true,
"await-promise": true,
"no-empty": true,
"no-floating-promises": true,
"triple-equals": true,
"interface-name": true,
"eofline": true,
"semicolon": true,
"member-ordering": [
true,
{
"order": [
"private-instance-field",
"protected-instance-field",
"public-instance-field",
"private-static-field",
"protected-static-field",
"public-static-field",
"private-constructor",
"protected-constructor",
"public-constructor",
"private-instance-method",
"protected-instance-method",
"public-instance-method",
"private-static-method",
"protected-static-method",
"public-static-method"
]
}
],
"no-return-await": true,
"no-shadowed-variable": true,
"no-sparse-arrays": true,
"unnecessary-else": true,
"no-string-literal": true,
"no-duplicate-imports": true,
"object-literal-sort-keys": false,
"ordered-imports": false,
"quotemark": [true, "single"],
"variable-name": [true, "allow-leading-underscore"]
}
}