-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtslint.json
45 lines (45 loc) · 987 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
43
44
45
{
"rules": {
"no-string-throw": true,
"no-unused-expression": true,
"no-duplicate-variable": true,
"curly": true,
"class-name": true,
"arrow-return-shorthand": true,
"ban-comma-operator": true,
"unified-signatures": true,
"member-ordering": true,
"await-promise": true,
"promise-function-async": true,
"no-return-await": true,
"only-arrow-functions": true,
"triple-equals": true,
"adjacent-overload-signatures": true,
"no-debugger": true,
"no-eval": true,
"new-parens": true,
"import-spacing": true,
"no-this-assignment": true,
"prefer-const": true,
"member-access": true,
"max-classes-per-file": {
"options": [
1
]
},
"quotemark": {
"options": "single"
},
"semicolon": [
true,
"always"
],
"array-type": {
"options": "array"
},
"max-file-line-count": {
"options": 200
}
},
"defaultSeverity": "warning"
}