-
Notifications
You must be signed in to change notification settings - Fork 23
/
tslint.json
183 lines (183 loc) · 4.84 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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
{
"rulesDirectory": [
"tslint-consistent-codestyle"
],
"rules": {
"adjacent-overload-signatures": true,
"align": [
false, // crashes
"statements",
"parameters",
"arguments",
"elements",
"members"
],
"array-type": [
true,
"array-simple"
],
"arrow-parens": true,
"arrow-return-shorthand": true,
"ban-comma-operator": true,
"class-name": true,
"comment-format": [true, "check-space"],
"eofline": true,
"forin": true,
"indent": [true, "spaces"],
"max-line-length": [true, 140],
"member-access": true,
"new-parens": true,
"no-arg": true,
"no-conditional-assignment": true,
"no-consecutive-blank-lines": [
true,
1
],
"no-console": [true,
"debug",
"info",
"time",
"timeEnd",
"trace"
],
"no-construct": true,
"no-debugger": true,
"no-default-export": true,
"no-duplicate-imports": true,
"no-duplicate-switch-case": true,
"no-empty-interface": true,
"no-eval": true,
"no-implicit-dependencies": true,
"no-import-side-effect": [true, {"ignore-module": "^reflect-metadata$"}],
"no-inferrable-types": [
true,
"ignore-params"
],
"no-irregular-whitespace": true,
"no-null-keyword": false,
"no-return-await": true,
"no-shadowed-variable": true,
"no-sparse-arrays": true,
"no-string-literal": true,
"no-submodule-imports": [true, "tsutils"],
"no-switch-case-fall-through": true,
"no-this-assignment": true,
"no-trailing-whitespace": true,
"no-unnecessary-callback-wrapper": true,
"no-unnecessary-initializer": true,
"no-unsafe-finally": true,
"no-unused-expression": true,
"no-var-keyword": true,
"no-var-requires": true,
"number-literal-format": true,
"object-literal-shorthand": true,
"one-line": [true,
"check-open-brace",
"check-catch",
"check-else",
"check-finally",
"check-whitespace"
],
"one-variable-per-declaration": [
true,
"ignore-for-loop"
],
"only-arrow-functions": [
true,
"allow-named-functions"
],
"prefer-const": [true, {"destructuring": "all"}],
"prefer-for-of": true,
"prefer-object-spread": true,
"prefer-switch": [true, {"min-cases": 3}],
"quotemark": [
true,
"single",
"avoid-escape"
],
"radix": true,
"semicolon": [true, "always"],
"space-before-function-paren": [
true,
{
"anonymous": false,
"named": false,
"asyncArrow": true,
"method": false,
"constructor": false
}
],
"space-within-parens": [true, 0],
"switch-final-break": true,
"trailing-comma": [true, {
"singleline": "never",
"multiline": "always",
"esSpecCompliant": true
}],
"triple-equals": [true, "allow-undefined-check"],
"typedef-whitespace": [true, {
"call-signature": "nospace",
"index-signature": "nospace",
"parameter": "nospace",
"property-declaration": "nospace",
"variable-declaration": "nospace"
}],
"unified-signatures": true,
"use-isnan": true,
"variable-name": [
true,
"ban-keywords"
],
"whitespace": [true,
"check-branch",
"check-decl",
"check-operator",
"check-separator",
"check-type",
"check-type-operator",
"check-rest-spread"
],
/* custom rules */
"no-unused": [
true,
"unused-class-expression-name",
"unused-function-expression-name",
"unused-catch-binding"
],
"ext-curly": [
true,
"else",
"nested-if-else",
"braced-child"
],
"naming-convention": [
true,
{"type": "default", "format": "camelCase", "leadingUnderscore": "forbid", "trailingUnderscore": "forbid"},
{"type": "default", "modifiers": "unused", "leadingUnderscore": "allow"},
{"type": "variable", "modifiers": ["global", "const"], "format": ["camelCase", "UPPER_CASE"]},
{"type": "variable", "modifiers": ["export", "const"], "format": ["camelCase", "UPPER_CASE", "PascalCase"]},
{"type": "property", "modifiers": ["public", "static", "const"], "format": ["camelCase", "UPPER_CASE"]},
{"type": "type", "format": "PascalCase"},
{"type": "genericTypeParameter", "regex": "^[A-Z]$"},
{"type": "enumMember", "format": "PascalCase"}
],
"no-as-type-assertion": true,
"no-accessor-recursion": true,
"no-collapsible-if": true,
"no-return-undefined": [
true,
"allow-void-expression"
],
"no-unnecessary-else": true,
"no-unnecessary-type-annotation": false,
"no-var-before-return": true,
"object-shorthand-properties-first": true,
"parameter-properties": [
true,
"leading",
"member-access"
],
"prefer-const-enum": true,
"prefer-while": true
}
}