-
Notifications
You must be signed in to change notification settings - Fork 26
/
tslint.json
41 lines (41 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
{
"extends": "tslint-config-airbnb",
"rules": {
"prefer-array-literal": [true, { "allow-type-parameters": true }],
"no-async-without-await": true,
"no-irregular-whitespace": true,
"align": [ true, "statements", "members", "elements" ],
"max-line-length": {
"options": [200]
},
"typedef": [
true,
"call-signature",
"property-declaration",
"parameter"
],
"ter-indent": false,
"ter-arrow-parens": false,
"no-increment-decrement": false,
"arrow-parens": false,
"prefer-const": false,
"prefer-template": false,
"no-consecutive-blank-lines": false,
"no-else-after-return": false,
"no-parameter-reassignment": false,
"space-in-parens": false,
"space-before-function-paren": false,
"quotemark": false,
"object-curly-spacing": false,
"object-literal-shorthand": false,
"array-bracket-spacing": false,
"whitespace": false,
"trailing-comma": [
true, {
"esSpecCompliant": true
}
],
"object-literal-key-quotes": false,
"member-ordering": [ true, { "order": "fields-first" } ]
}
}