-
Notifications
You must be signed in to change notification settings - Fork 0
/
tslint.json
53 lines (53 loc) · 1.79 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
{
"defaultSeverity": "error",
"extends": [
"tslint:recommended"
],
"jsRules": {},
"rules": {
"member-access": [false],
"no-empty-interface": false,
"no-magic-numbers": [false],
"no-reference": true,
"ordered-imports": false,
"promise-function-async": true,
"await-promise": false,
"curly": false,
"no-debugger": true,
"no-duplicate-super": true,
"no-empty": [true, "allow-empty-catch"],
"no-invalid-template-strings": true,
"no-invalid-this": [false],
"no-shadowed-variable": true,
"no-switch-case-fall-through": true,
"no-unused-expression": [true, "allow-fast-null-checks"],
"strict-boolean-expressions": false,
"triple-equals": [true, "allow-null-check", "allow-undefined-check"],
"eofline": true,
"indent": [true, "spaces", 4],
"max-file-line-count": [true, 300],
"max-line-length": [true, 200],
"no-duplicate-imports": true,
"prefer-const": true,
"arrow-parens": false,
"arrow-return-shorthand": true,
"class-name": true,
"interface-name": [false],
"no-angle-bracket-type-assertion": false,
"no-trailing-whitespace": [true],
"object-literal-sort-keys": false,
"variable-name": [true, "ban-keywords"],
"quotemark": [true, "double"],
"semicolon": [true, "never"],
"no-console": [false],
"forin": false,
"member-ordering": [false],
"no-namespace": [false],
"no-var-requires": false,
"no-conditional-assignment": false,
"object-literal-shorthand": false,
"object-literal-key-quotes": [true, "as-needed"],
"no-bitwise": false
},
"rulesDirectory": []
}