-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtslint.json
259 lines (259 loc) · 9.14 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
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
{
"extends": ["tslint:latest", "tslint-react"],
"rules": {
"adjacent-overload-signatures": true,
"align": true,
"array-type": [true, "generic"],
"arrow-parens": true,
"arrow-return-shorthand": true,
"await-promise": true,
"ban-comma-operator": true,
"binary-expression-operand-order": true,
"callable-types": true,
"class-name": true,
"comment-format": [true, "check-space"],
"completed-docs": [
true,
{
"classes": {
"visibilities": "exported"
},
"enums": {
"visibilities": "exported"
},
"functions": {
"visibilities": "exported"
},
"interfaces": {
"visibilities": "exported"
},
"namespaces": {
"visibilities": "all"
},
"methods": {
"locations": "all",
"privacies": ["public", "protected"]
},
"properties": {
"locations": "all",
"privacies": ["public", "protected"]
},
"types": {
"visibilities": "exported"
},
"variables": {
"visibilities": "all"
}
}
],
"curly": true,
"cyclomatic-complexity": true,
"deprecation": true,
"encoding": true,
"eofline": true,
"file-header": [true, "\\*\n \\* Created by [^\\*]+ on \\d{4}-\\d{2}-\\d{2}\n "],
"forin": true,
"import-blacklist": [true, "rxjs", "lodash"],
"import-spacing": true,
"indent": [true, "spaces", 4],
"interface-name": [true, "always-prefix"],
"jsdoc-format": [true, "check-multiline-start"],
"jsx-alignment": false,
"jsx-boolean-value": false,
"jsx-curly-spacing": [true, "never"],
"jsx-equals-spacing": [true, "never"],
"jsx-key": true,
"jsx-no-bind": true,
"jsx-no-lambda": true,
"jsx-no-multiline-js": true,
"jsx-no-string-ref": true,
"jsx-use-translation-function": [true, "allow-punctuation", "allow-htmlentities"],
"jsx-self-close": true,
"jsx-space-before-trailing-slash": true,
"jsx-wrap-multiline": true,
"label-position": true,
"linebreak-style": [true, "LF"],
"match-default-export-name": true,
"max-classes-per-file": [true, 1],
"max-file-line-count": [true, 300],
"max-line-length": [true, {"limit": 120, "ignore-pattern": "^import |^export {(.*?)}"}],
"member-access": true,
"member-ordering": [
true,
[
"public-static-field",
"public-static-method",
"public-instance-field",
"public-constructor",
"public-instance-method",
"protected-static-field",
"protected-static-method",
"protected-instance-field",
"protected-constructor",
"protected-instance-method",
"private-static-field",
"private-static-method",
"private-instance-field",
"private-constructor",
"private-instance-method"
]
],
"newline-before-return": true,
"new-parens": true,
"no-angle-bracket-type-assertion": true,
"no-any": true,
"no-arg": true,
"no-bitwise": true,
"no-boolean-literal-compare": true,
"no-conditional-assignment": true,
"no-consecutive-blank-lines": true,
"no-console": true,
"no-construct": true,
"no-debugger": true,
"no-duplicate-imports": true,
"no-duplicate-super": true,
"no-duplicate-switch-case": true,
"no-duplicate-variable": true,
"no-dynamic-delete": true,
"no-empty": [true, "allow-empty-functions"],
"no-empty-interface": false,
"no-eval": true,
"no-floating-promises": true,
"no-for-in-array": true,
"no-implicit-dependencies": false,
"no-import-side-effect": true,
"no-inferrable-types": true,
"no-inferred-empty-object-type": true,
"no-internal-module": true,
"no-invalid-template-strings": true,
"no-invalid-this": true,
"no-irregular-whitespace": true,
"no-magic-numbers": true,
"no-misused-new": true,
"no-namespace": true,
"no-non-null-assertion": true,
"no-null-keyword": true,
"no-object-literal-type-assertion": true,
"no-parameter-properties": true,
"no-parameter-reassignment": true,
"no-redundant-jsdoc": true,
"no-reference": true,
"no-reference-import": true,
"no-require-imports": true,
"no-return-await": true,
"no-shadowed-variable": true,
"no-sparse-arrays": true,
"no-string-literal": true,
"no-string-throw": true,
"no-submodule-imports": [true, "@app", "@img", "bootstrap", "isomorphic-style-loader"],
"no-switch-case-fall-through": true,
"no-this-assignment": true,
"no-trailing-whitespace": true,
"no-unbound-method": true,
"no-unnecessary-callback-wrapper": true,
"no-unnecessary-class": true,
"no-unnecessary-initializer": false,
"no-unnecessary-qualifier": true,
"no-unnecessary-type-assertion": true,
"no-unsafe-any": true,
"no-unsafe-finally": true,
"no-unused-expression": true,
"no-unused-variable": true,
"no-var-keyword": true,
"no-var-requires": true,
"no-void-expression": [true, "ignore-arrow-function-shorthand"],
"number-literal-format": true,
"object-literal-key-quotes": [true, "as-needed"],
"object-literal-shorthand": false,
"object-literal-sort-keys": [true, "match-declaration-order"],
"one-line": [true, "check-catch", "check-finally", "check-else", "check-open-brace", "check-whitespace"],
"one-variable-per-declaration": true,
"only-arrow-functions": [true, "allow-declarations", "allow-named-functions"],
"ordered-imports": [
true,
{
"import-sources-order": "case-insensitive",
"grouped-imports": true,
"named-imports-order": "case-insensitive",
"module-source-path": "full"
}
],
"prefer-conditional-expression": [true, "check-else-if"],
"prefer-const": true,
"prefer-for-of": true,
"prefer-object-spread": true,
"prefer-readonly": true,
"prefer-switch": true,
"prefer-template": true,
"prefer-while": true,
"promise-function-async": true,
"quotemark": [true, "double"],
"radix": true,
"restrict-plus-operands": true,
"semicolon": [true, "always"],
"space-before-function-paren": [
true,
{
"anonymous": "never",
"named": "never",
"asyncArrow": "always",
"method": "never",
"constructor": "never"
}
],
"space-within-parens": [true, 0],
"strict-boolean-expressions": [true, "allow-mix"],
"strict-type-predicates": true,
"switch-default": true,
"switch-final-break": [true, "always"],
"trailing-comma": [
true,
{
"multiline": {
"arrays": "always",
"objects": "always",
"functions": "ignore",
"imports": "always",
"exports": "always",
"typeLiterals": "always"
},
"singleline": "never"
}
],
"triple-equals": [true],
"type-literal-delimiter": true,
"typedef-whitespace": [
true,
{
"call-signature": "nospace",
"index-signature": "nospace",
"parameter": "nospace",
"property-declaration": "nospace",
"variable-declaration": "nospace"
},
{
"call-signature": "onespace",
"index-signature": "onespace",
"parameter": "onespace",
"property-declaration": "onespace",
"variable-declaration": "onespace"
}
],
"typeof-compare": true,
"unified-signatures": true,
"use-default-type-parameter": true,
"use-isnan": true,
"variable-name": [true, "ban-keywords", "check-format", "allow-pascal-case"],
"whitespace": [
true,
"check-branch",
"check-decl",
"check-operator",
"check-separator",
"check-type",
"check-typecast",
"check-type-operator",
"check-preblock"
]
}
}