-
-
Notifications
You must be signed in to change notification settings - Fork 17
/
tslint.json
36 lines (35 loc) · 938 Bytes
/
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
{
"extends": "tslint:recommended",
"rules": {
"max-line-length": {
"options": [140]
},
"indent": [true, "tabs", 4],
"one-line": [false],
"arrow-parens": [true, "ban-single-arg-parens"],
"trailing-comma": [true,
{
"multiline": "never",
"singleline": "never"
}
],
"object-literal-sort-keys": [false],
"no-consecutive-blank-lines": [true, 2],
"interface-name": [false],
"comment-format": [false],
"member-access": false,
"array-type": false,
"max-classes-per-file": false,
"align": [true, "elements", "members", "statements"],
"member-ordering": [false],
"no-namespace": false,
"no-var-requires": false,
"no-empty-interface": [false],
"no-bitwise": [false],
"curly": [false],
"no-conditional-assignment": false,
"ordered-imports": [false],
"quotemark": [true, "single"],
"triple-equals": [false]
}
}