-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtslint.json
39 lines (39 loc) · 1.06 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
{
"defaultSeverity": "error",
"extends": [
"tslint:recommended"
],
"jsRules": {},
"rules": {
"arrow-parens": [
true,
"ban-single-arg-parens"
],
"await-promise": true,
"cyclomatic-complexity": true,
"interface-name": [
true,
"never-prefix"
],
"no-boolean-literal-compare": true,
"no-console": true,
"no-duplicate-switch-case": true,
"no-floating-promises": true,
"no-implicit-dependencies": [
true,
"dev"
],
"no-import-side-effect": true,
"no-inferred-empty-object-type": true,
"no-invalid-template-strings": false,
"no-invalid-this": true,
"no-parameter-reassignment": true,
"no-return-await": true,
"no-switch-case-fall-through": true,
"no-unnecessary-class": true,
"no-unnecessary-type-assertion": true,
"object-literal-sort-keys": false,
"prefer-readonly": true
},
"rulesDirectory": []
}