-
Notifications
You must be signed in to change notification settings - Fork 0
/
tslint.json
35 lines (35 loc) · 941 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
{
"defaultSeverity": "error",
"extends": [
"tslint:recommended"
],
"linterOptions": {
"exclude": [
"jest.config.js"
]
},
"jsRules": {},
"rules": {
"interface-name": [true, "never-prefix"],
"ordered-imports": false,
"object-literal-sort-keys": false,
"quotemark": false,
"object-literal-shorthand": [true, "never"],
"semicolon": [true, "always", "ignore-interfaces"],
"triple-equals": false,
"arrow-parens": [true, "ban-single-arg-parens"],
"trailing-comma": [
true,
{
"multiline": {
"objects": "never",
"arrays": "never",
"functions": "never",
"typeLiterals": "ignore"
},
"esSpecCompliant": true
}
]
},
"rulesDirectory": []
}