-
Notifications
You must be signed in to change notification settings - Fork 0
/
tslint.json
40 lines (40 loc) · 1.17 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
{
"defaultSeverity": "error",
"extends": [
"tslint:recommended"
],
"jsRules": {},
"rules": {
"no-eval": false,
"no-console": false,
"no-empty": false,
"max-line-length": false,
"quotemark": false,
"eofline": true,
"only-arrow-functions": false,
"variable-name": false,
"ordered-imports": false,
"object-literal-sort-keys": false,
"no-string-literal": false,
"no-unused-expression": false,
"one-variable-per-declaration": false,
"object-literal-shorthand": false,
"max-classes-per-file": false,
"no-irregular-whitespace": true,
"indent": [true, "spaces", 4],
"space-within-parens": [true, 0],
"space-before-function-paren": [true, {
"anonymous": "always",
"named": "never",
"asyncArrow": "always"
}],
"whitespace": [true, "check-branch", "check-operator", "check-typecast"],
"prefer-const": [true, {
"destructuring": "all"
}],
"radix": false,
"forin": false,
"interface-name": false
},
"rulesDirectory": []
}