-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtslint.json
More file actions
39 lines (39 loc) · 1.01 KB
/
tslint.json
File metadata and controls
39 lines (39 loc) · 1.01 KB
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": {},
"linterOptions": {
"exclude": [
"node_modules/**",
"*.d.ts"
]
},
"rules": {
"array-type": [true, "array-simple"],
"no-namespace": false,
"variable-name": {
"options": [
"allow-leading-underscore",
"allow-snake-case"
]
},
"max-classes-per-file": false,
"class-name": false,
"trailing-comma": false,
"eofline": false,
"member-access": false,
"member-ordering": false,
"object-literal-sort-keys": false,
"no-reference": false,
"no-console": false,
"arrow-parens": false,
"no-string-literal": false,
"interface-over-type-literal": false,
"object-literal-shorthand": false,
"interface-name": true,
"no-empty-interface": false
},
"rulesDirectory": []
}