-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtslint.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"
],
"linterOptions": {
"exclude": [
"test/**"
]
},
"jsRules": {
},
"rules": {
"array-type": false,
"ban-types": false,
"callable-types": false,
"forin": false,
"interface-name": false,
"interface-over-type-literal": false,
"one-variable-per-declaration": false,
"member-ordering": false,
"no-trailing-whitespace": false,
"no-string-literal": false,
"no-namespace": false,
"object-literal-sort-keys": false,
"only-arrow-functions": [
false
],
"ordered-imports": false,
"max-classes-per-file": true,
"max-line-length": [true, 220],
"new-parens": false,
"no-unused-expression": false,
"no-shadowed-variable": false,
"prefer-for-of": false,
"variable-name": false
},
"rulesDirectory": []
}