-
Notifications
You must be signed in to change notification settings - Fork 0
/
tslint.json
61 lines (60 loc) · 1.53 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
{
"defaultSeverity": "error",
"extends": [
"tslint:recommended"
],
"rulesDirectory": [
"node_modules/tslint-eslint-rules/dist/rules"
],
"rules": {
"no-constant-condition": true,
"no-control-regex": true,
"no-duplicate-case": true,
"no-empty-character-class": true,
"no-ex-assign": true,
"no-extra-boolean-cast": true,
"no-extra-semi": true,
"no-inner-declarations": true,
"no-invalid-regexp": true,
"ter-no-irregular-whitespace": true,
"no-regex-spaces": true,
"ter-no-sparse-arrays": true,
"no-unexpected-multiline": true,
"valid-jsdoc": true,
"valid-typeof": true,
"no-multi-spaces": true,
"ter-no-proto": true,
"ter-no-script-url": true,
"ter-no-self-compare": true,
"handle-callback-err": true,
"ter-arrow-body-style": true,
"ter-arrow-parens": true,
"ter-arrow-spacing": true,
"ter-prefer-arrow-callback": true,
"object-literal-sort-keys": false,
"trailing-comma": [
true,
{
"singleline": "never",
"multiline": {
"objects": "always",
"arrays": "always",
"functions": "never",
"typeLiterals": "ignore"
},
"esSpecCompliant": true
}
],
"space-before-function-paren": {
"options": {
"anonymous": "always",
"asyncArrow": "always",
"constructor": "always",
"method": "always",
"named": "always"
}
},
"quotemark": [true, "single", "avoid-escape", "avoid-template"]
},
"jsRules": true
}