-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
tslint.json
42 lines (42 loc) · 1.11 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
{
"extends": [
"tslint-config-airbnb"
],
"rules": {
"align": [true, "elements", "members", "parameters", "statements"],
"arrow-return-shorthand": true,
"import-name": [false],
"max-line-length": false,
"member-access": true,
"member-ordering": [true, {
"order": "fields-first"
}],
"no-constant-condition": true,
"no-else-after-return": false,
"no-increment-decrement": false,
"no-return-undefined": true,
"no-unnecessary-else": true,
"no-unnecessary-type-annotation": true,
"no-unused": true,
"no-unused-expression": [true, "allow-new"],
"no-var-before-return": true,
"object-literal-sort-keys": [true, "shorthand-first"],
"ordered-imports": {
"options": {
"import-sources-order": "any",
"named-imports-order": "case-insensitive"
}
},
"ter-arrow-parens": [true, "always"],
"typedef": [
true,
"array-destructuring",
"call-signature",
"member-variable-declaration",
"parameter",
"property-declaration"
],
"variable-name": false,
"unnecessary-constructor": true
}
}