-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathtslint.json
41 lines (41 loc) · 894 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
40
41
{
"defaultSeverity": "error",
"extends": [
"tslint:recommended",
"tslint-eslint-rules"
],
"rules": {
"arrow-parens": [
true,
"ban-single-arg-parens"
],
"brace-style": [
false,
"stroustrup",
{
"allowSingleLine": true
}
],
"indent": [
true,
"spaces"
],
"interface-name": false,
"max-classes-per-file": false,
"max-line-length": [
true,
120
],
"no-console": false,
"no-empty": false,
"no-string-literal": false,
"object-literal-sort-keys": false,
"semicolon": [
true,
"always"
],
"trailing-comma": false,
"variable-name": false
},
"rulesDirectory": []
}