forked from eslint/eslint
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrule-types.json
268 lines (268 loc) · 9.37 KB
/
rule-types.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
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
{
"accessor-pairs": "suggestion",
"array-bracket-newline": "layout",
"array-bracket-spacing": "layout",
"array-callback-return": "problem",
"array-element-newline": "layout",
"arrow-body-style": "suggestion",
"arrow-parens": "layout",
"arrow-spacing": "layout",
"block-scoped-var": "suggestion",
"block-spacing": "layout",
"brace-style": "layout",
"callback-return": "suggestion",
"camelcase": "suggestion",
"capitalized-comments": "suggestion",
"class-methods-use-this": "suggestion",
"comma-dangle": "layout",
"comma-spacing": "layout",
"comma-style": "layout",
"complexity": "suggestion",
"computed-property-spacing": "layout",
"consistent-return": "suggestion",
"consistent-this": "suggestion",
"constructor-super": "problem",
"curly": "suggestion",
"default-case": "suggestion",
"dot-location": "layout",
"dot-notation": "suggestion",
"eol-last": "layout",
"eqeqeq": "suggestion",
"for-direction": "problem",
"func-call-spacing": "layout",
"func-name-matching": "suggestion",
"func-names": "suggestion",
"func-style": "suggestion",
"function-paren-newline": "layout",
"generator-star-spacing": "layout",
"getter-return": "problem",
"global-require": "suggestion",
"guard-for-in": "suggestion",
"handle-callback-err": "suggestion",
"id-blacklist": "suggestion",
"id-length": "suggestion",
"id-match": "suggestion",
"implicit-arrow-linebreak": "layout",
"indent": "layout",
"indent-legacy": "layout",
"init-declarations": "suggestion",
"jsx-quotes": "layout",
"key-spacing": "layout",
"keyword-spacing": "layout",
"line-comment-position": "layout",
"linebreak-style": "layout",
"lines-around-comment": "layout",
"lines-around-directive": "layout",
"lines-between-class-members": "layout",
"max-classes-per-file": "suggestion",
"max-depth": "suggestion",
"max-len": "layout",
"max-lines": "suggestion",
"max-lines-per-function": "suggestion",
"max-nested-callbacks": "suggestion",
"max-params": "suggestion",
"max-statements": "suggestion",
"max-statements-per-line": "layout",
"multiline-comment-style": "suggestion",
"multiline-ternary": "layout",
"new-cap": "suggestion",
"new-parens": "layout",
"newline-after-var": "layout",
"newline-before-return": "layout",
"newline-per-chained-call": "layout",
"no-alert": "suggestion",
"no-array-constructor": "suggestion",
"no-async-promise-executor": "problem",
"no-await-in-loop": "problem",
"no-bitwise": "suggestion",
"no-buffer-constructor": "problem",
"no-caller": "suggestion",
"no-case-declarations": "suggestion",
"no-catch-shadow": "suggestion",
"no-class-assign": "problem",
"no-compare-neg-zero": "problem",
"no-cond-assign": "problem",
"no-confusing-arrow": "suggestion",
"no-console": "suggestion",
"no-const-assign": "problem",
"no-constant-condition": "problem",
"no-continue": "suggestion",
"no-control-regex": "problem",
"no-debugger": "problem",
"no-delete-var": "suggestion",
"no-div-regex": "suggestion",
"no-dupe-args": "problem",
"no-dupe-class-members": "problem",
"no-dupe-keys": "problem",
"no-duplicate-case": "problem",
"no-duplicate-imports": "problem",
"no-else-return": "suggestion",
"no-empty": "suggestion",
"no-empty-character-class": "problem",
"no-empty-function": "suggestion",
"no-empty-pattern": "problem",
"no-eq-null": "suggestion",
"no-eval": "suggestion",
"no-ex-assign": "problem",
"no-extend-native": "suggestion",
"no-extra-bind": "suggestion",
"no-extra-boolean-cast": "suggestion",
"no-extra-label": "suggestion",
"no-extra-parens": "layout",
"no-extra-semi": "suggestion",
"no-fallthrough": "problem",
"no-floating-decimal": "suggestion",
"no-func-assign": "problem",
"no-global-assign": "suggestion",
"no-implicit-coercion": "suggestion",
"no-implicit-globals": "suggestion",
"no-implied-eval": "suggestion",
"no-inline-comments": "suggestion",
"no-inner-declarations": "problem",
"no-invalid-regexp": "problem",
"no-invalid-this": "suggestion",
"no-irregular-whitespace": "problem",
"no-iterator": "suggestion",
"no-label-var": "suggestion",
"no-labels": "suggestion",
"no-lone-blocks": "suggestion",
"no-lonely-if": "suggestion",
"no-loop-func": "suggestion",
"no-magic-numbers": "suggestion",
"no-misleading-character-class": "problem",
"no-mixed-operators": "suggestion",
"no-mixed-requires": "suggestion",
"no-mixed-spaces-and-tabs": "layout",
"no-multi-assign": "suggestion",
"no-multi-spaces": "layout",
"no-multi-str": "suggestion",
"no-multiple-empty-lines": "layout",
"no-native-reassign": "suggestion",
"no-negated-condition": "suggestion",
"no-negated-in-lhs": "problem",
"no-nested-ternary": "suggestion",
"no-new": "suggestion",
"no-new-func": "suggestion",
"no-new-object": "suggestion",
"no-new-require": "suggestion",
"no-new-symbol": "problem",
"no-new-wrappers": "suggestion",
"no-obj-calls": "problem",
"no-octal": "suggestion",
"no-octal-escape": "suggestion",
"no-param-reassign": "suggestion",
"no-path-concat": "suggestion",
"no-plusplus": "suggestion",
"no-process-env": "suggestion",
"no-process-exit": "suggestion",
"no-proto": "suggestion",
"no-prototype-builtins": "problem",
"no-redeclare": "suggestion",
"no-regex-spaces": "suggestion",
"no-restricted-globals": "suggestion",
"no-restricted-imports": "suggestion",
"no-restricted-modules": "suggestion",
"no-restricted-properties": "suggestion",
"no-restricted-syntax": "suggestion",
"no-return-assign": "suggestion",
"no-return-await": "suggestion",
"no-script-url": "suggestion",
"no-self-assign": "problem",
"no-self-compare": "problem",
"no-sequences": "suggestion",
"no-shadow": "suggestion",
"no-shadow-restricted-names": "suggestion",
"no-spaced-func": "layout",
"no-sparse-arrays": "problem",
"no-sync": "suggestion",
"no-tabs": "layout",
"no-template-curly-in-string": "problem",
"no-ternary": "suggestion",
"no-this-before-super": "problem",
"no-throw-literal": "suggestion",
"no-trailing-spaces": "layout",
"no-undef": "problem",
"no-undef-init": "suggestion",
"no-undefined": "suggestion",
"no-underscore-dangle": "suggestion",
"no-unexpected-multiline": "problem",
"no-unmodified-loop-condition": "problem",
"no-unneeded-ternary": "suggestion",
"no-unreachable": "problem",
"no-unsafe-finally": "problem",
"no-unsafe-negation": "problem",
"no-unused-expressions": "suggestion",
"no-unused-labels": "suggestion",
"no-unused-vars": "problem",
"no-use-before-define": "problem",
"no-useless-call": "suggestion",
"no-useless-catch": "suggestion",
"no-useless-computed-key": "suggestion",
"no-useless-concat": "suggestion",
"no-useless-constructor": "suggestion",
"no-useless-escape": "suggestion",
"no-useless-rename": "suggestion",
"no-useless-return": "suggestion",
"no-var": "suggestion",
"no-void": "suggestion",
"no-warning-comments": "suggestion",
"no-whitespace-before-property": "layout",
"no-with": "suggestion",
"nonblock-statement-body-position": "layout",
"object-curly-newline": "layout",
"object-curly-spacing": "layout",
"object-property-newline": "layout",
"object-shorthand": "suggestion",
"one-var": "suggestion",
"one-var-declaration-per-line": "suggestion",
"operator-assignment": "suggestion",
"operator-linebreak": "layout",
"padded-blocks": "layout",
"padding-line-between-statements": "layout",
"prefer-arrow-callback": "suggestion",
"prefer-const": "suggestion",
"prefer-destructuring": "suggestion",
"prefer-named-capture-group": "suggestion",
"prefer-numeric-literals": "suggestion",
"prefer-object-spread": "suggestion",
"prefer-promise-reject-errors": "suggestion",
"prefer-reflect": "suggestion",
"prefer-rest-params": "suggestion",
"prefer-spread": "suggestion",
"prefer-template": "suggestion",
"quote-props": "suggestion",
"quotes": "layout",
"radix": "suggestion",
"require-atomic-updates": "problem",
"require-await": "suggestion",
"require-jsdoc": "suggestion",
"require-unicode-regexp": "suggestion",
"require-yield": "suggestion",
"rest-spread-spacing": "layout",
"semi": "layout",
"semi-spacing": "layout",
"semi-style": "layout",
"sort-imports": "suggestion",
"sort-keys": "suggestion",
"sort-vars": "suggestion",
"space-before-blocks": "layout",
"space-before-function-paren": "layout",
"space-in-parens": "layout",
"space-infix-ops": "layout",
"space-unary-ops": "layout",
"spaced-comment": "suggestion",
"strict": "suggestion",
"switch-colon-spacing": "layout",
"symbol-description": "suggestion",
"template-curly-spacing": "layout",
"template-tag-spacing": "layout",
"unicode-bom": "layout",
"use-isnan": "problem",
"valid-jsdoc": "suggestion",
"valid-typeof": "problem",
"vars-on-top": "suggestion",
"wrap-iife": "layout",
"wrap-regex": "layout",
"yield-star-spacing": "layout",
"yoda": "suggestion"
}