-
Notifications
You must be signed in to change notification settings - Fork 0
/
tslint.json
49 lines (49 loc) · 1.05 KB
/
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
46
47
48
49
{
"defaultSeverity": "error",
"extends": [
"tslint:recommended"
],
"jsRules": {
"no-unused-expression": true
},
"rules": {
"quotemark": [
true,
"single"
],
"member-access": true,
"ordered-imports": true,
"max-line-length": [
true,
150
],
"member-ordering": true,
"interface-name": true,
"arrow-parens": true,
"object-literal-sort-keys": true,
"semicolon": true,
"indent": [
true,
"spaces",
2
],
"prefer-conditional-expression": true,
"prefer-const": true,
"prefer-for-of": true,
"prefer-function-over-method": true,
"prefer-method-signature": true,
"prefer-object-spread": true,
"prefer-readonly": true,
"prefer-switch": true,
"prefer-template": true,
"prefer-while": true,
"no-any": true,
"no-boolean-literal-compare": true,
"no-default-export": true,
"no-duplicate-imports": true,
"await-promise": true,
"no-return-await": true,
"only-arrow-functions": true
},
"rulesDirectory": []
}