forked from Gerasimov94/tslint-bamboo-formatter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tslint.json
41 lines (41 loc) · 1.02 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
41
{
"rules": {
"indent": [true, "tabs", 4],
"quotemark": false,
"ordered-imports": false,
"no-shadowed-variable": false,
"member-access": false,
"arrow-parens": false,
"max-line-length": {
"options": [120]
},
"new-parens": true,
"import-spacing": false,
"no-arg": true,
"no-any": true,
"no-angle-bracket-type-assertion": false,
"semicolon": [true, "always", "ignore-bound-class-methods"],
"no-bitwise": true,
"no-conditional-assignment": true,
"no-consecutive-blank-lines": false,
"no-empty-interface": true,
"no-console": [true, "log", "error"],
"eofline": true,
"trailing-comma": [true, {"multiline": "always", "singleline": "never"}],
"whitespace": [
true,
"check-branch",
"check-operator",
"check-typecast",
"check-module",
"check-rest-spread"
],
"object-literal-sort-keys": false,
"variable-name": false,
"no-empty": [true, "allow-empty-catch"],
"no-namespace": false,
"align": false,
"newline-before-return": true,
"curly": [true, "ignore-same-line"]
}
}