-
Notifications
You must be signed in to change notification settings - Fork 15
/
tslint.json
38 lines (38 loc) · 993 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
{
"extends": "tslint:recommended",
"rules": {
"member-ordering": false,
"object-literal-sort-keys": false,
"ordered-imports": false,
"quotemark": [true, "single", "avoid-escape", "jsx-double"],
"no-consecutive-blank-lines": false,
"lines-between-class-members": [true, 1],
"semicolon": [true, "never"],
"curly": [true, "ignore-same-line"],
"arrow-parens": [true, "ban-single-arg-parens"],
"variable-name": {
"options": [
"ban-keywords",
"check-format",
"allow-leading-underscore",
"allow-pascal-case"
]
},
"trailing-comma": [
true,
{
"multiline": {
"objects": "always",
"arrays": "always",
"functions": "always",
"typeLiterals": "ignore"
},
"esSpecCompliant": true
}
]
},
"linterOptions": {
"exclude": ["./node_modules/**"]
},
"rulesDirectory": ["node_modules/tslint-lines-between-class-members"]
}