-
Notifications
You must be signed in to change notification settings - Fork 1
/
tslint.json
43 lines (43 loc) · 848 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
37
38
39
40
41
42
43
{
"extends": [
"tslint-config-airbnb",
"tslint-eslint-rules"
],
"rules": {
"align": false,
"array-bracket-spacing": true,
"object-curly-spacing": true,
"ordered-imports": [
true,
{
"import-sources-order": "lowercase-last",
"named-imports-order": "lowercase-last",
"grouped-imports": true
}
],
"whitespace": {
"options": [
"check-branch",
"check-decl",
"check-module",
"check-operator",
"check-preblock",
"check-rest-spread",
"check-separator",
"check-type",
"check-type-operator",
"check-typecast"
]
},
"max-line-length": {
"options": [
1000
]
},
"variable-name": {
"options": [
"allow-leading-underscore"
]
}
}
}