-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtslint.debug.json
41 lines (41 loc) · 1009 Bytes
/
tslint.debug.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
{
"extends": [
"tslint:recommended",
"tslint-immutable",
"tslint-consistent-codestyle",
"tslint-config-airbnb"
],
"rules": {
"align": [true, "parameters", "statements", "members"],
"no-console": false,
"import-name": false,
"interface-name": [true, "never-prefix"],
"no-debugger": false,
"no-duplicate-imports": false,
"no-object-literal-type-assertion": false,
"ordered-imports": [
true,
{
"import-sources-order": "case-insensitive",
"grouped-imports": false,
"named-imports-order": "case-insensitive",
"module-source-path": "full"
}
],
"object-literal-sort-keys": false,
"array-type": false,
"strict-boolean-expressions": false,
"trailing-comma": [
true,
{
"multiline": {
"objects": "always",
"arrays": "always",
"functions": "never",
"typeLiterals": "ignore"
},
"esSpecCompliant": true
}
]
}
}