-
Notifications
You must be signed in to change notification settings - Fork 0
/
tslint.json
40 lines (40 loc) · 1.28 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
40
{
"extends": [
"tslint:latest",
"tslint-config-airbnb"
],
"rules": {
"align": [false],
"brace-style": [true, "stroustrup"],
"import-name": [false],
"interface-name": [true, "never-prefix"],
"max-line-length": [true, 120],
"member-ordering": [false],
"member-access": [true, "no-public"],
"no-boolean-literal-compare": [false],
"no-implicit-dependencies": [true, "dev"],
"no-shadowed-variable": [false],
"no-submodule-imports": [true, "history"],
"no-unused-expression": [true, "allow-fast-null-checks"],
"object-literal-sort-keys": [false],
"object-shorthand-properties-first": [false],
"one-line": [false],
"ordered-imports": [false],
"prefer-array-literal": [false],
"strict-boolean-expressions": [false],
"ter-indent": [true, 4, {
"SwitchCase": 1
}],
"trailing-comma": [true, {
"multiline": {
"objects": "always",
"arrays": "always",
"functions": "always",
"imports": "always",
"exports": "always",
"typeLiterals": "always"
},
"esSpecCompliant": true
}]
}
}