-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtslint.json
33 lines (31 loc) · 885 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
// {
// "extends": "tslint-config-standard"
// }
{
"extends": "tslint:recommended",
"rules": {
"max-classes-per-file": false,
"member-access": [true, "no-public"],
"no-angle-bracket-type-assertion": false,
"no-unused-expression": false,
"object-literal-shorthand": false,
"object-literal-sort-keys": false,
"only-arrow-functions": false,
"no-var-requires": false,
"no-console": false,
"whitespace": [ // All except check-typecast
true,
"check-branch",
"check-decl",
"check-operator",
"check-module",
"check-separator",
"check-rest-spread",
"check-type",
// "check-typecast"
"check-preblock",
"check-type-operator",
"check-preblock"
]
}
}