]> git.proxmox.com Git - pve-eslint.git/blob - eslint/tools/rule-types.json
update to 7.1.0 sources
[pve-eslint.git] / eslint / tools / rule-types.json
1 {
2 "accessor-pairs": "suggestion",
3 "array-bracket-newline": "layout",
4 "array-bracket-spacing": "layout",
5 "array-callback-return": "problem",
6 "array-element-newline": "layout",
7 "arrow-body-style": "suggestion",
8 "arrow-parens": "layout",
9 "arrow-spacing": "layout",
10 "block-scoped-var": "suggestion",
11 "block-spacing": "layout",
12 "brace-style": "layout",
13 "callback-return": "suggestion",
14 "camelcase": "suggestion",
15 "capitalized-comments": "suggestion",
16 "class-methods-use-this": "suggestion",
17 "comma-dangle": "layout",
18 "comma-spacing": "layout",
19 "comma-style": "layout",
20 "complexity": "suggestion",
21 "computed-property-spacing": "layout",
22 "consistent-return": "suggestion",
23 "consistent-this": "suggestion",
24 "constructor-super": "problem",
25 "curly": "suggestion",
26 "default-case": "suggestion",
27 "default-case-last": "suggestion",
28 "default-param-last": "suggestion",
29 "dot-location": "layout",
30 "dot-notation": "suggestion",
31 "eol-last": "layout",
32 "eqeqeq": "suggestion",
33 "for-direction": "problem",
34 "func-call-spacing": "layout",
35 "func-name-matching": "suggestion",
36 "func-names": "suggestion",
37 "func-style": "suggestion",
38 "function-call-argument-newline": "layout",
39 "function-paren-newline": "layout",
40 "generator-star-spacing": "layout",
41 "getter-return": "problem",
42 "global-require": "suggestion",
43 "grouped-accessor-pairs": "suggestion",
44 "guard-for-in": "suggestion",
45 "handle-callback-err": "suggestion",
46 "id-blacklist": "suggestion",
47 "id-length": "suggestion",
48 "id-match": "suggestion",
49 "implicit-arrow-linebreak": "layout",
50 "indent": "layout",
51 "indent-legacy": "layout",
52 "init-declarations": "suggestion",
53 "jsx-quotes": "layout",
54 "key-spacing": "layout",
55 "keyword-spacing": "layout",
56 "line-comment-position": "layout",
57 "linebreak-style": "layout",
58 "lines-around-comment": "layout",
59 "lines-around-directive": "layout",
60 "lines-between-class-members": "layout",
61 "max-classes-per-file": "suggestion",
62 "max-depth": "suggestion",
63 "max-len": "layout",
64 "max-lines": "suggestion",
65 "max-lines-per-function": "suggestion",
66 "max-nested-callbacks": "suggestion",
67 "max-params": "suggestion",
68 "max-statements": "suggestion",
69 "max-statements-per-line": "layout",
70 "multiline-comment-style": "suggestion",
71 "multiline-ternary": "layout",
72 "new-cap": "suggestion",
73 "new-parens": "layout",
74 "newline-after-var": "layout",
75 "newline-before-return": "layout",
76 "newline-per-chained-call": "layout",
77 "no-alert": "suggestion",
78 "no-array-constructor": "suggestion",
79 "no-async-promise-executor": "problem",
80 "no-await-in-loop": "problem",
81 "no-bitwise": "suggestion",
82 "no-buffer-constructor": "problem",
83 "no-caller": "suggestion",
84 "no-case-declarations": "suggestion",
85 "no-catch-shadow": "suggestion",
86 "no-class-assign": "problem",
87 "no-compare-neg-zero": "problem",
88 "no-cond-assign": "problem",
89 "no-confusing-arrow": "suggestion",
90 "no-console": "suggestion",
91 "no-const-assign": "problem",
92 "no-constant-condition": "problem",
93 "no-constructor-return": "problem",
94 "no-continue": "suggestion",
95 "no-control-regex": "problem",
96 "no-debugger": "problem",
97 "no-delete-var": "suggestion",
98 "no-div-regex": "suggestion",
99 "no-dupe-args": "problem",
100 "no-dupe-class-members": "problem",
101 "no-dupe-else-if": "problem",
102 "no-dupe-keys": "problem",
103 "no-duplicate-case": "problem",
104 "no-duplicate-imports": "problem",
105 "no-else-return": "suggestion",
106 "no-empty": "suggestion",
107 "no-empty-character-class": "problem",
108 "no-empty-function": "suggestion",
109 "no-empty-pattern": "problem",
110 "no-eq-null": "suggestion",
111 "no-eval": "suggestion",
112 "no-ex-assign": "problem",
113 "no-extend-native": "suggestion",
114 "no-extra-bind": "suggestion",
115 "no-extra-boolean-cast": "suggestion",
116 "no-extra-label": "suggestion",
117 "no-extra-parens": "layout",
118 "no-extra-semi": "suggestion",
119 "no-fallthrough": "problem",
120 "no-floating-decimal": "suggestion",
121 "no-func-assign": "problem",
122 "no-global-assign": "suggestion",
123 "no-implicit-coercion": "suggestion",
124 "no-implicit-globals": "suggestion",
125 "no-implied-eval": "suggestion",
126 "no-import-assign": "problem",
127 "no-inline-comments": "suggestion",
128 "no-inner-declarations": "problem",
129 "no-invalid-regexp": "problem",
130 "no-invalid-this": "suggestion",
131 "no-irregular-whitespace": "problem",
132 "no-iterator": "suggestion",
133 "no-label-var": "suggestion",
134 "no-labels": "suggestion",
135 "no-lone-blocks": "suggestion",
136 "no-lonely-if": "suggestion",
137 "no-loop-func": "suggestion",
138 "no-loss-of-precision": "problem",
139 "no-magic-numbers": "suggestion",
140 "no-misleading-character-class": "problem",
141 "no-mixed-operators": "suggestion",
142 "no-mixed-requires": "suggestion",
143 "no-mixed-spaces-and-tabs": "layout",
144 "no-multi-assign": "suggestion",
145 "no-multi-spaces": "layout",
146 "no-multi-str": "suggestion",
147 "no-multiple-empty-lines": "layout",
148 "no-native-reassign": "suggestion",
149 "no-negated-condition": "suggestion",
150 "no-negated-in-lhs": "problem",
151 "no-nested-ternary": "suggestion",
152 "no-new": "suggestion",
153 "no-new-func": "suggestion",
154 "no-new-object": "suggestion",
155 "no-new-require": "suggestion",
156 "no-new-symbol": "problem",
157 "no-new-wrappers": "suggestion",
158 "no-obj-calls": "problem",
159 "no-octal": "suggestion",
160 "no-octal-escape": "suggestion",
161 "no-param-reassign": "suggestion",
162 "no-path-concat": "suggestion",
163 "no-plusplus": "suggestion",
164 "no-process-env": "suggestion",
165 "no-process-exit": "suggestion",
166 "no-proto": "suggestion",
167 "no-prototype-builtins": "problem",
168 "no-redeclare": "suggestion",
169 "no-regex-spaces": "suggestion",
170 "no-restricted-exports": "suggestion",
171 "no-restricted-globals": "suggestion",
172 "no-restricted-imports": "suggestion",
173 "no-restricted-modules": "suggestion",
174 "no-restricted-properties": "suggestion",
175 "no-restricted-syntax": "suggestion",
176 "no-return-assign": "suggestion",
177 "no-return-await": "suggestion",
178 "no-script-url": "suggestion",
179 "no-self-assign": "problem",
180 "no-self-compare": "problem",
181 "no-sequences": "suggestion",
182 "no-setter-return": "problem",
183 "no-shadow": "suggestion",
184 "no-shadow-restricted-names": "suggestion",
185 "no-spaced-func": "layout",
186 "no-sparse-arrays": "problem",
187 "no-sync": "suggestion",
188 "no-tabs": "layout",
189 "no-template-curly-in-string": "problem",
190 "no-ternary": "suggestion",
191 "no-this-before-super": "problem",
192 "no-throw-literal": "suggestion",
193 "no-trailing-spaces": "layout",
194 "no-undef": "problem",
195 "no-undef-init": "suggestion",
196 "no-undefined": "suggestion",
197 "no-underscore-dangle": "suggestion",
198 "no-unexpected-multiline": "problem",
199 "no-unmodified-loop-condition": "problem",
200 "no-unneeded-ternary": "suggestion",
201 "no-unreachable": "problem",
202 "no-unsafe-finally": "problem",
203 "no-unsafe-negation": "problem",
204 "no-unused-expressions": "suggestion",
205 "no-unused-labels": "suggestion",
206 "no-unused-vars": "problem",
207 "no-use-before-define": "problem",
208 "no-useless-backreference": "problem",
209 "no-useless-call": "suggestion",
210 "no-useless-catch": "suggestion",
211 "no-useless-computed-key": "suggestion",
212 "no-useless-concat": "suggestion",
213 "no-useless-constructor": "suggestion",
214 "no-useless-escape": "suggestion",
215 "no-useless-rename": "suggestion",
216 "no-useless-return": "suggestion",
217 "no-var": "suggestion",
218 "no-void": "suggestion",
219 "no-warning-comments": "suggestion",
220 "no-whitespace-before-property": "layout",
221 "no-with": "suggestion",
222 "nonblock-statement-body-position": "layout",
223 "object-curly-newline": "layout",
224 "object-curly-spacing": "layout",
225 "object-property-newline": "layout",
226 "object-shorthand": "suggestion",
227 "one-var": "suggestion",
228 "one-var-declaration-per-line": "suggestion",
229 "operator-assignment": "suggestion",
230 "operator-linebreak": "layout",
231 "padded-blocks": "layout",
232 "padding-line-between-statements": "layout",
233 "prefer-arrow-callback": "suggestion",
234 "prefer-const": "suggestion",
235 "prefer-destructuring": "suggestion",
236 "prefer-exponentiation-operator": "suggestion",
237 "prefer-named-capture-group": "suggestion",
238 "prefer-numeric-literals": "suggestion",
239 "prefer-object-spread": "suggestion",
240 "prefer-promise-reject-errors": "suggestion",
241 "prefer-reflect": "suggestion",
242 "prefer-regex-literals": "suggestion",
243 "prefer-rest-params": "suggestion",
244 "prefer-spread": "suggestion",
245 "prefer-template": "suggestion",
246 "quote-props": "suggestion",
247 "quotes": "layout",
248 "radix": "suggestion",
249 "require-atomic-updates": "problem",
250 "require-await": "suggestion",
251 "require-jsdoc": "suggestion",
252 "require-unicode-regexp": "suggestion",
253 "require-yield": "suggestion",
254 "rest-spread-spacing": "layout",
255 "semi": "layout",
256 "semi-spacing": "layout",
257 "semi-style": "layout",
258 "sort-imports": "suggestion",
259 "sort-keys": "suggestion",
260 "sort-vars": "suggestion",
261 "space-before-blocks": "layout",
262 "space-before-function-paren": "layout",
263 "space-in-parens": "layout",
264 "space-infix-ops": "layout",
265 "space-unary-ops": "layout",
266 "spaced-comment": "suggestion",
267 "strict": "suggestion",
268 "switch-colon-spacing": "layout",
269 "symbol-description": "suggestion",
270 "template-curly-spacing": "layout",
271 "template-tag-spacing": "layout",
272 "unicode-bom": "layout",
273 "use-isnan": "problem",
274 "valid-jsdoc": "suggestion",
275 "valid-typeof": "problem",
276 "vars-on-top": "suggestion",
277 "wrap-iife": "layout",
278 "wrap-regex": "layout",
279 "yield-star-spacing": "layout",
280 "yoda": "suggestion"
281 }