-
Notifications
You must be signed in to change notification settings - Fork 0
/
tslint.json
37 lines (37 loc) · 880 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
{
"defaultSeverity": "error",
"extends": ["tslint:latest"],
"jsRules": {},
"linterOptions": {
"exclude": [
"src/main/settings.ts"
]
},
"rules": {
"quotemark": [true, "single"],
"semicolon": [true, "never"],
"trailing-comma": [
true,
{
"multiline": {
"objects": "always",
"arrays": "always",
"functions": "always",
"typeLiterals": "never"
},
"singleline": "never"
}
],
"interface-name": [true, "never-prefix"],
"object-literal-sort-keys": false,
"object-literal-key-quotes": false,
"no-implicit-dependencies": [true, "dev"],
"ordered-imports": false,
"no-empty": false,
"member-access": false,
"no-duplicate-imports": false,
"member-ordering": false,
"variable-name": false,
"no-unused-expression": false
}
}