-
Notifications
You must be signed in to change notification settings - Fork 21
Expand file tree
/
Copy pathtslint.json
More file actions
57 lines (57 loc) · 1.37 KB
/
tslint.json
File metadata and controls
57 lines (57 loc) · 1.37 KB
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
{
"extends": [
"tslint-config-prettier"
],
"rules": {
"ban": false,
"curly": true,
"eofline": false,
"forin": true,
"indent": [
true,
"spaces"
],
"jsdoc-format": true,
"label-position": true,
"no-any": false,
"no-arg": true,
"no-bitwise": true,
"no-consecutive-blank-lines": false,
"no-construct": true,
"no-debugger": true,
"no-duplicate-variable": true,
"no-empty": false,
"no-eval": true,
"no-default-export": false,
"no-shadowed-variable": true,
"no-string-literal": false,
"no-switch-case-fall-through": true,
"no-trailing-whitespace": false,
"no-unused-expression": true,
"no-unbound-method": true,
"no-floating-promises": true,
"one-line": [
true,
"check-catch",
"check-else",
"check-open-brace",
"check-whitespace"
],
"radix": true,
"restrict-plus-operands": true,
"trailing-comma": [
false
],
"triple-equals": [
true,
"allow-null-check"
],
"whitespace": false
},
"linterOptions": {
"exclude": [
"**/*.json",
"**/jointjs/**"
]
}
}