-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathtslint.json
More file actions
39 lines (39 loc) · 717 Bytes
/
tslint.json
File metadata and controls
39 lines (39 loc) · 717 Bytes
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
{
"extends": "tslint:recommended",
"rules": {
"member-ordering": false,
"object-literal-sort-keys": false,
"ordered-imports": false,
"quotemark": [
true,
"single"
],
"trailing-comma": [
true,
{
"multiline": "never",
"singleline": "never"
}
],
"eofline": false,
"no-console": false,
"no-string-literal": {
"severity": "warning"
},
"max-classes-per-file": {
"severity": "warning"
},
"one-line": {
"severity": "warning"
},
"no-empty": {
"severity": "warning"
},
"max-line-length": [false, 120]
},
"linterOptions": {
"exclude": [
"./node_modules/**"
]
}
}