-
Notifications
You must be signed in to change notification settings - Fork 2
/
tslint.json
39 lines (39 loc) · 1.03 KB
/
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
{
"extends": "tslint:latest",
"rules": {
"align": [
true,
"arguments",
"elements",
"members",
"parameters",
"statements"
],
"no-namespace": false,
"no-default-export": true,
"no-shadowed-variable": [true],
"variable-name": [true, "allow-leading-underscore"],
"no-bitwise": false,
"object-literal-sort-keys": false,
"no-console": false,
"interface-name": false,
"forin": false,
"max-classes-per-file": false,
"whitespace": [
true,
"check-branch",
"check-decl",
"check-operator",
"check-module",
"check-separator",
"check-rest-spread",
"check-type",
"check-typecast",
"check-type-operator",
"check-preblock"
],
"no-unused-expression": true,
"no-unbound-method": true,
"indent": [true, "spaces", 4]
}
}