-
Notifications
You must be signed in to change notification settings - Fork 0
/
tslint.json
79 lines (79 loc) · 1.76 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"defaultSeverity": "error",
"extends": [
"tslint:recommended"
],
"jsRules": {},
"rules": {
"arrow-parens": [
true,
"ban-single-arg-parens"
],
"arrow-return-shorthand": true,
"await-promise": true,
"curly": true,
"cyclomatic-complexity": [
true,
10
],
"interface-name": [
true,
"never-prefix"
],
"max-classes-per-file": 7,
"max-file-line-count": [
true,
400
],
"object-literal-sort-keys": false,
"member-ordering": false,
"max-line-length": [
true,
150
],
"no-any": false,
"no-boolean-literal-compare": true,
"no-conditional-assignment": true,
"no-console": [
true,
"log",
"error"
],
"no-debugger": true,
"no-duplicate-super": true,
"no-duplicate-switch-case": true,
"no-eval": true,
"no-floating-promises": true,
"no-inferred-empty-object-type": true,
"no-import-side-effect": true,
"no-invalid-template-strings": false,
"no-invalid-this": true,
"no-magic-numbers": false,
"no-parameter-reassignment": true,
"no-reference": true,
"no-return-await": true,
"no-string-literal": true,
"no-string-throw": true,
"no-this-assignment": false,
"no-unnecessary-type-assertion": true,
"no-unnecessary-callback-wrapper": true,
"no-switch-case-fall-through": true,
"no-unnecessary-class": true,
"no-unused-expression": true,
"no-var-keyword": true,
"object-literal-shorthand": true,
"prefer-readonly": true,
"prefer-const": true,
"member-access": true,
"quotemark": [
true,
"double"
],
"semicolon": [
true,
"always"
],
"strict-boolean-expressions": false
},
"rulesDirectory": []
}