-
Notifications
You must be signed in to change notification settings - Fork 19
/
tslint.json
39 lines (39 loc) · 1010 Bytes
/
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": {
"quotemark": false,
"indent": [
true,
"spaces",
4
],
"eofline": false,
"trailing-comma":false,
"ordered-imports":false,
"curly": false,
"object-literal-sort-keys":false,
"ban-types": [
"Function"
],
"no-empty":false,
"no-shadowed-variable":false,
"variable-name": [true, "allow-leading-underscore"],
"member-access":false,
"interface-name":false,
"member-ordering":false,
"object-literal-shorthand":false,
"prefer-const":false,
"array-type":false,
"no-console":false,
"max-classes-per-file": [true, 5],
"no-namespace": false,
"callable-types":false,
"prefer-for-of":false,
"no-unnecessary-initializer":false
},
"rulesDirectory": []
}