-
Notifications
You must be signed in to change notification settings - Fork 2
/
tslint.json
44 lines (44 loc) · 1.18 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
42
43
44
{
"defaultSeverity": "error",
"extends": "tslint:recommended",
"jsRules": {},
"rules": {
"array-type": [true, "generic"],
"no-unused-expression":true,
"no-bitwise":false,
"no-duplicate-variable": true,
"no-reference": false,
"no-namespace": false,
"member-access": false,
"interface-name": false,
"member-ordering": false,
"only-arrow-functions": false,
"object-literal-sort-keys": false,
"no-conditional-assignment": false,
"one-variable-per-declaration": false,
"max-classes-per-file": false,
"no-internal-module":false,
"one-line":[true,"check-catch",
"check-finally",
"check-else",
"check-open-brace"],
"trailing-comma": [
true,
{
"multiline": {
"objects": "always",
"arrays": "always",
"typeLiterals": "always",
"functions": "never"
}
}
],
"arrow-parens": [
true,
"ban-single-arg-parens"
]
},
"rulesDirectory": [
"node_modules/tslint-eslint-rules/dist/rules"
]
}