-
Notifications
You must be signed in to change notification settings - Fork 0
/
tslint.json
37 lines (37 loc) · 1.04 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
{
"rules": {
"align": [false],
"arrow-parens": false,
"interface-name": [true, "never-prefix"],
"no-consecutive-blank-lines": [false],
"no-console": [true, "log", "warn"],
"no-empty": false,
"no-switch-case-fall-through": true,
"no-irregular-whitespace": true,
"no-object-literal-type-assertion": false,
"no-var-requires": false,
"no-unnecessary-initializer": false,
"max-classes-per-file": [false],
"max-line-length": [true, 180],
"member-access": [false],
"member-ordering": [false],
"object-literal-key-quotes": [false],
"object-literal-shorthand": false,
"object-literal-sort-keys": false,
"one-line": [false],
"one-variable-per-declaration": [false],
"ordered-imports": [false],
"switch-default": true,
"quotemark": [true, "single", "jsx-double"],
"variable-name": [true, "ban-keywords"],
"whitespace": [
true,
"check-branch",
"check-decl",
"check-module",
"check-separator",
"check-type",
"check-typecast"
]
}
}