-
Notifications
You must be signed in to change notification settings - Fork 5
/
tslint.json
executable file
·44 lines (44 loc) · 1.15 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": ["@radar/tslint-config"],
"jsRules": {
"no-cond-assign": [2, "always"],
"no-constant-condition": 1,
"no-control-regex": 2,
"no-dupe-args": 1,
"no-dupe-keys": 2,
"no-duplicate-case": 2,
"no-empty-character-class": 2,
"no-empty": true,
"no-ex-assign": 2,
"no-extra-boolean-cast": 1,
"no-extra-parens": [1, "functions"],
"no-extra-semi": 1,
"no-func-assign": 1,
"no-invalid-regexp": 2,
"no-irregular-whitespace": true,
"no-negated-in-lhs": 1,
"no-obj-calls": 1,
"no-regex-spaces": 1,
"no-sparse-arrays": true,
"no-unreachable": 2,
"valid-jsdoc": 1,
"valid-typeof": 1,
"no-unexpected-multiline": 1,
"no-fallthrough": 1,
"no-octal": 2,
"no-redeclare": 1,
"no-delete-var": 1,
"no-mixed-spaces-and-tabs": 1,
"no-var": 1,
"prefer-const": true
},
"rules": {
"only-arrow-functions": false,
"no-var-requires": false,
"interface-name": false,
"object-literal-sort-keys": false,
"variable-name": [true, "check-format", "allow-leading-underscore", "allow-pascal-case"]
},
"rulesDirectory": []
}