-
Notifications
You must be signed in to change notification settings - Fork 13
/
tslint.json
28 lines (28 loc) · 850 Bytes
/
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
{
"defaultSeverity": "error",
"extends": ["tslint:recommended", "tslint-eslint-rules"],
"jsRules": {},
"rules": {
"quotemark": [true, "single"],
"ordered-imports": [false],
"no-reference-import": [false],
"object-literal-sort-keys": [false],
"arrow-parens": [true, "ban-single-arg-parens"],
"no-duplicate-case": [true],
"no-constant-condition": [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],
"no-irregular-whitespace": [true],
"no-regex-spaces": [true],
"no-sparse-arrays": [true],
"no-unexpected-multiline": [true],
"valid-jsdoc": [true],
"valid-typeof": [true],
"no-control-regex": [true]
},
"rulesDirectory": []
}