-
Notifications
You must be signed in to change notification settings - Fork 1
/
tslint.json
169 lines (169 loc) · 4.13 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
{
"extends": "tslint:recommended",
"linterOptions": {
"format": "verbose",
"exclude": [
"tests/test-cases/**/*.ts"
]
},
"rules": {
"align": {
"options": [
"parameters",
"arguments",
"statements"
]
},
"array-type": {
"options": ["array"]
},
"arrow-return-shorthand": { "severity": "off" },
"ban-ts-ignore": {},
"cyclomatic-complexity": {
"options": [13]
},
"deprecation": {},
"encoding": {},
"file-name-casing": {
"options": ["kebab-case"]
},
"indent": {
"options": ["tabs"]
},
"interface-name": {
"options": ["never-prefix"]
},
"label-position": { "severity": "off" },
"match-default-export-name": {},
"max-line-length": { "severity": "off" },
"member-access": {
"options": [
"check-accessor",
"check-constructor"
]
},
"member-ordering": {
"options": [
{
"order": [
"public-static-field",
"protected-static-field",
"private-static-field",
"public-instance-field",
"protected-instance-field",
"private-instance-field",
"constructor",
"public-instance-method",
"public-static-method",
"protected-instance-method",
"protected-static-method",
"private-instance-method",
"private-static-method"
]
}
]
},
"no-any": {},
"no-bitwise": { "severity": "off" },
"no-console": { "severity": "off" },
"no-default-export": {},
"no-dynamic-delete": {},
"no-empty-interface": { "severity": "off" },
"no-for-in-array": {},
"no-inferrable-types": {
"options": [
"ignore-params",
"ignore-properties"
]
},
"no-invalid-this": {
"options": []
},
"no-irregular-whitespace": {},
"no-mergeable-namespace": {},
"no-namespace": { "severity": "off" },
"no-non-null-assertion": {},
"no-parameter-properties": {},
"no-redundant-jsdoc": {},
"no-reference": { "severity": "off" },
"no-shadowed-variable": { "severity": "off" },
"no-switch-case-fall-through": {},
"no-tautology-expression": {},
"no-unnecessary-class": {},
"no-unnecessary-qualifier": {},
"no-unnecessary-type-assertion": {},
"no-unused-variable": { "severity": "off" },
"number-literal-format": {},
"object-literal-key-quotes": {
"options": ["as-needed"]
},
"object-literal-sort-keys": { "severity": "off" },
"one-variable-per-declaration": {},
"only-arrow-functions": {
"options": ["allow-declarations"]
},
"ordered-imports": { "severity": "off" },
"prefer-function-over-method": {},
"prefer-method-signature": {},
"prefer-readonly": {},
"quotemark": {
"options": [
"single",
"avoid-escape"
]
},
"radix": { "severity": "off" },
"strict-boolean-expressions": { "severity": "off" },
"strict-type-predicates": {},
"trailing-comma": {
"options": [
{
"singleline": "never",
"multiline": {
"arrays": "always",
"exports": "always",
"functions": "never",
"imports": "always",
"objects": "always",
"typeLiterals": "always"
}
}
]
},
"type-literal-delimiter": {},
"typedef": {
"options": [
"call-signature",
"parameter",
"arrow-parameter",
"property-declaration",
"member-variable-declaration"
]
},
"unified-signatures": { "severity": "off" },
"unnecessary-constructor": {},
"unnecessary-else": {
"options": {
"allow-else-if": true
}
},
"variable-name": {
"options": [
"ban-keywords",
"check-format",
"allow-leading-underscore"
]
},
"whitespace": {
"options": [
"check-branch",
"check-decl",
"check-operator",
"check-module",
"check-separator",
"check-type",
"check-type-operator"
]
}
}
}