-
Notifications
You must be signed in to change notification settings - Fork 0
/
tslint.json
95 lines (95 loc) · 2.01 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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
{
"defaultSeverity": "warning",
"extends": [
"tslint:recommended"
],
"linterOptions": {
"exclude": [
"node_modules/**"
]
},
"rules": {
"indent": [
true,
"spaces",
2
],
"quotemark": [
true,
"single"
],
"semicolon": [
true,
"always",
"ignore-interfaces"
],
"no-trailing-whitespace": false,
"no-irregular-whitespace": true,
"space-before-function-paren": [
true,
"always"
],
"no-consecutive-blank-lines": [
true,
2
],
"space-within-parens": [
true,
0
],
"no-inferrable-types": false,
"curly": true,
"triple-equals": true,
"comment-format": true,
"no-unnecessary-initializer": true,
"prefer-const": true,
"no-shadowed-variable": true,
"no-empty-interface": true,
"interface-over-type-literal": true,
"object-literal-sort-keys": false,
"new-parens": true,
"use-isnan": true,
"forin": true,
"no-for-in-array": true,
"no-construct": true,
"no-duplicate-super": true,
"no-sparse-arrays": true,
"no-bitwise": false,
"no-duplicate-variable": [
true,
"check-parameters"
],
"no-empty": [
true,
"allow-empty-catch"
],
"only-arrow-functions": [
true,
"allow-declarations",
"allow-named-functions"
],
"arrow-parens": [
true,
"ban-single-arg-parens"
],
"max-classes-per-file": [false, 1],
"one-line": true,
"number-literal-format": true,
"no-var-keyword": true,
"no-eval": true,
"no-console": false,
"no-debugger": false,
"no-non-null-assertion": true,
"return-undefined": true,
"no-switch-case-fall-through": true,
"no-unsafe-finally": true,
"no-duplicate-imports": true,
"import-spacing": true,
"ordered-imports": false,
"no-mergeable-namespace": true,
"member-access": false,
"no-angle-bracket-type-assertion": true,
"class-name": true,
"interface-name": false
}
}