-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathtslint.json
43 lines (43 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
40
41
42
43
{
"$schema": "http://json.schemastore.org/tslint",
"defaultSeverity": "error",
"extends": [
"tslint:recommended"
],
"jsRules": {
},
"rules": {
"arrow-parens": {
"options": "ban-single-arg-parens"
},
"array-type": {
"options": "array"
},
"interface-name": {
"options": "never-prefix"
},
"member-access": {
"options": "no-public"
},
"ordered-imports": false,
"typeof-compare": true,
"max-classes-per-file": false,
"max-line-length": false,
"strictNullChecks": true,
"one-line": false,
"forin": false,
"use-isnan": true,
"trailing-comma": true,
"semicolon": true,
"radix": true,
"no-void-expression": true,
"no-unsafe-any": true,
"quotemark": {
"options": "double"
},
"no-unused-variable": true,
"no-unsafe-finally": true,
"prefer-const": true
},
"rulesDirectory": []
}