-
Notifications
You must be signed in to change notification settings - Fork 0
/
tslint.json
executable file
·41 lines (41 loc) · 1001 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": "warn",
"extends": ["tslint:recommended"],
"jsRules": {
"no-unused-expression": true
},
"rules": {
"eofline": true,
"semicolon": true,
"no-unused-expression": true,
"no-unused-variable": true,
"quotemark": [true, "single"],
"indent": [true, "spaces", 2],
"max-line-length": [true, 150],
"whitespace": {
"options": [
"check-branch",
"check-operator",
"check-separator",
"check-preblock",
"check-branch",
"check-module"
]
},
"member-access": false,
"ordered-imports": false,
"member-ordering": false,
"curly": false,
"interface-name": false,
"array-type": false,
"no-empty-interface": false,
"no-empty": false,
"arrow-parens": false,
"object-literal-sort-keys": false,
"max-classes-per-file": false,
"variable-name": false,
"one-line": false,
"one-variable-per-declaration": false,
"trailing-comma": false
}
}