-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtslint.json
184 lines (184 loc) · 4.58 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
184
{
"extends": ["tslint-config-prettier"],
"rules": {
"prettier": true,
"function-name": [
true,
{
"function-regex": "^[a-zA-Z][\\w\\d]+$"
}
],
"no-banned-terms": true,
"no-delete-expression": true,
"no-disable-auto-sanitization": true,
"no-eval": true,
"no-exec-script": true,
"no-function-constructor-with-string-args": true,
"no-http-string": [
true,
"http://www.example.com/?.*",
"http://www.examples.com/?.*",
"http://example.com/?.*"
],
"no-octal-literal": true,
"no-reserved-keywords": true,
"no-string-based-set-immediate": true,
"no-string-based-set-interval": true,
"no-string-based-set-timeout": true,
"forin": true,
"label-position": true,
"no-any": true,
"no-arg": true,
"no-bitwise": true,
"no-conditional-assignment": true,
"no-console": [
true,
"debug",
"info",
"log",
"time",
"timeEnd",
"trace"
],
"no-constant-condition": true,
"no-control-regex": true,
"no-debugger": true,
"no-duplicate-variable": true,
"no-empty": true,
"no-increment-decrement": true,
"no-invalid-regexp": true,
"no-invalid-this": true,
"no-regex-spaces": true,
"no-sparse-arrays": true,
"no-string-literal": true,
"no-unnecessary-bind": true,
"no-unnecessary-override": true,
"no-duplicate-switch-case": true,
"no-unnecessary-class": true,
"no-unsafe-finally": true,
"no-unused-expression": true,
"no-with-statement": true,
"promise-must-complete": true,
"radix": true,
"switch-default": true,
"triple-equals": false,
"use-isnan": true,
"use-named-parameter": true,
"arrow-parens": false,
"class-name": true,
"comment-format": [
true,
"check-space",
"check-uppercase"
],
"export-name": false,
"import-name": false,
"interface-name": [
true,
"never-prefix"
],
"jsdoc-format": true,
"max-file-line-count": true,
"max-func-body-length": [
true,
100,
{
"ignore-parameters-to-function-regex": "describe"
}
],
"max-line-length": [
true,
140
],
"member-access": true,
"member-ordering": false,
"missing-jsdoc": false,
"new-parens": true,
"no-construct": true,
"no-default-export": true,
"no-empty-interface": true,
"no-for-in": true,
"no-function-expression": false,
"no-inferrable-types": false,
"no-multiline-string": true,
"no-null-keyword": false,
"no-relative-imports": false,
"no-require-imports": true,
"no-shadowed-variable": true,
"no-suspicious-comment": true,
"no-typeof-undefined": true,
"no-unnecessary-field-initialization": true,
"no-unnecessary-local-variable": true,
"no-var-keyword": true,
"no-var-requires": true,
"no-this-assignment": true,
"object-literal-sort-keys": false,
"one-variable-per-declaration": true,
"only-arrow-functions": false,
"ordered-imports": true,
"prefer-array-literal": true,
"prefer-const": false,
"typedef": false,
"underscore-consistent-invocation": true,
"variable-name": [true, "allow-leading-underscore"],
"align": false,
"curly": true,
"eofline": true,
"indent": [
true,
"spaces"
],
"linebreak-style": true,
"no-consecutive-blank-lines": [
true,
2
],
"no-empty-line-after-opening-brace": false,
"no-single-line-block-comment": true,
"no-trailing-whitespace": true,
"no-unnecessary-semicolons": true,
"object-literal-key-quotes": [
true,
"as-needed"
],
"one-line": [
true,
"check-open-brace",
"check-catch",
"check-else",
"check-whitespace"
],
"quotemark": [
true,
"single",
"avoid-escape"
],
"trailing-comma": [
true,
{
"singleline": "never",
"multiline": "always"
}
],
"typedef-whitespace": false,
"whitespace": false,
"ban": false,
"no-angle-bracket-type-assertion": true,
"no-internal-module": false,
"no-mergeable-namespace": false,
"no-namespace": false,
"no-reference": true,
"no-unexternalized-strings": false,
"prefer-type-cast": false,
"missing-optional-annotation": false,
"no-duplicate-parameter-names": false,
"no-missing-visibility-modifiers": false,
"no-multiple-var-decl": false,
"no-switch-case-fall-through": false,
"no-unused-imports": false
},
"rulesDirectory": [
"tslint-microsoft-contrib",
"tslint-plugin-prettier"
]
}