-
Notifications
You must be signed in to change notification settings - Fork 1
/
tslint.json
41 lines (41 loc) · 868 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
{
"extends": "tslint:recommended",
"rules": {
"quotemark": [
true,
"single"
],
"variable-name": [
false,
"ban-keywords",
"check-format",
"allow-leading-underscore"
],
"no-default-export": true,
"no-redundant-jsdoc": false,
"no-trailing-whitespace": false,
"only-arrow-functions": false,
"interface-name": true,
"ordered-imports": true,
"object-literal-sort-keys": false,
"object-literal-shorthand": false,
"no-empty": false,
"new-parens": true,
"no-arg": true,
"no-bitwise": true,
"no-conditional-assignment": true,
"no-consecutive-blank-lines": true,
"no-console": {
"severity": "warning",
"options": [
"debug",
"info",
"log",
"error",
"time",
"timeEnd",
"trace"
]
}
}
}