-
Notifications
You must be signed in to change notification settings - Fork 3
/
tslint.json
42 lines (42 loc) · 994 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
{
"defaultSeverity": "error",
"extends": [
"tslint:recommended"
],
"jsRules": {},
"rules": {
"arrow-parens": {
"options": "ban-single-arg-parens"
},
"interface-name": {
"options": "never-prefix"
},
"max-classes-per-file": false,
"max-line-length": {
"options": {
"limit": 140
}
},
"member-access": {
"options": "no-public"
},
"member-ordering": false,
"new-parens": false,
"no-unused-expression": false,
"object-literal-sort-keys": false,
"quotemark": {
"options": [
"single",
"avoid-escape"
]
},
"variable-name": {
"options": [
"allow-leading-underscore",
"ban-keywords",
"check-format"
]
}
},
"rulesDirectory": []
}