-
Notifications
You must be signed in to change notification settings - Fork 1
/
tslint.json
38 lines (38 loc) · 1.02 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
{
"defaultSeverity": "warning",
"extends": [
"tslint:recommended",
"tslint-config-prettier"
],
"jsRules": {
"max-line-length": {
"options": [120]
}
},
"rules": {
"max-line-length": {
"options": [120]
},
"variable-name": {
"options": [
"allow-leading-underscore",
"allow-pascal-case"
]
},
"unnecessary-else": true,
"arrow-parens": [true, "ban-single-arg-parens"],
"new-parens": false,
"trailing-comma": [true, "never"],
"semicolon": [true, "never"],
"only-arrow-functions": true,
"switch-final-break": [true, "always"],
"no-return-await": true,
"interface-name" : [true, "never-prefix"],
"object-literal-sort-keys": false,
"no-shadowed-variable": false,
"no-bitwise": false,
"one-variable-per-declaration": false,
"no-console": false
},
"rulesDirectory": []
}