immosquare-cleaner 0.1.63 → 0.1.64
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/lib/immosquare-cleaner/version.rb +1 -1
- data/lib/immosquare-cleaner.rb +2 -2
- data/linters/rubocop/cop/custom_cops/style/font_awesome_normalization.rb +104 -0
- data/linters/rubocop-3.4.1.yml +3 -1
- data/linters/rubocop.yml +4 -0
- data/node_modules/@eslint/config-helpers/LICENSE +201 -0
- data/node_modules/@eslint/config-helpers/README.md +97 -0
- data/node_modules/@eslint/config-helpers/dist/cjs/index.cjs +546 -0
- data/node_modules/@eslint/config-helpers/dist/cjs/index.d.cts +22 -0
- data/node_modules/@eslint/config-helpers/dist/cjs/types.cts +31 -0
- data/node_modules/@eslint/config-helpers/dist/esm/index.d.ts +22 -0
- data/node_modules/@eslint/config-helpers/dist/esm/index.js +544 -0
- data/node_modules/@eslint/config-helpers/dist/esm/types.d.ts +23 -0
- data/node_modules/@eslint/config-helpers/dist/esm/types.ts +31 -0
- data/node_modules/@eslint/config-helpers/package.json +60 -0
- data/node_modules/@eslint/js/package.json +1 -1
- data/node_modules/eslint/README.md +6 -4
- data/node_modules/eslint/lib/config-api.js +12 -0
- data/node_modules/eslint/lib/languages/js/source-code/source-code.js +18 -14
- data/node_modules/eslint/lib/rules/no-console.js +19 -11
- data/node_modules/eslint/lib/rules/no-native-reassign.js +1 -1
- data/node_modules/eslint/lib/rules/no-negated-in-lhs.js +1 -1
- data/node_modules/eslint/lib/types/config-api.d.ts +8 -0
- data/node_modules/eslint/lib/types/rules.d.ts +5199 -0
- data/node_modules/eslint/package.json +14 -6
- data/node_modules/eslint-scope/README.md +4 -3
- data/node_modules/eslint-scope/dist/eslint-scope.cjs +59 -2
- data/node_modules/eslint-scope/lib/index.js +1 -0
- data/node_modules/eslint-scope/lib/referencer.js +52 -0
- data/node_modules/eslint-scope/lib/scope-manager.js +4 -0
- data/node_modules/eslint-scope/lib/scope.js +1 -1
- data/node_modules/eslint-scope/lib/version.js +1 -1
- data/node_modules/eslint-scope/package.json +1 -1
- data/package.json +2 -2
- metadata +16 -11
- data/node_modules/eslint/lib/types/rules/best-practices.d.ts +0 -1143
- data/node_modules/eslint/lib/types/rules/deprecated.d.ts +0 -252
- data/node_modules/eslint/lib/types/rules/ecmascript-6.d.ts +0 -647
- data/node_modules/eslint/lib/types/rules/index.d.ts +0 -50
- data/node_modules/eslint/lib/types/rules/node-commonjs.d.ts +0 -171
- data/node_modules/eslint/lib/types/rules/possible-errors.d.ts +0 -685
- data/node_modules/eslint/lib/types/rules/strict-mode.d.ts +0 -38
- data/node_modules/eslint/lib/types/rules/stylistic-issues.d.ts +0 -2043
- data/node_modules/eslint/lib/types/rules/variables.d.ts +0 -234
@@ -1,2043 +0,0 @@
|
|
1
|
-
/**
|
2
|
-
* @fileoverview This file contains the rule types for ESLint. It was initially extracted
|
3
|
-
* from the `@types/eslint` package.
|
4
|
-
*/
|
5
|
-
|
6
|
-
/*
|
7
|
-
* MIT License
|
8
|
-
* Copyright (c) Microsoft Corporation.
|
9
|
-
*
|
10
|
-
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
11
|
-
* of this software and associated documentation files (the "Software"), to deal
|
12
|
-
* in the Software without restriction, including without limitation the rights
|
13
|
-
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
14
|
-
* copies of the Software, and to permit persons to whom the Software is
|
15
|
-
* furnished to do so, subject to the following conditions:
|
16
|
-
* The above copyright notice and this permission notice shall be included in all
|
17
|
-
* copies or substantial portions of the Software.
|
18
|
-
*
|
19
|
-
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
20
|
-
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
21
|
-
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
22
|
-
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
23
|
-
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
24
|
-
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
25
|
-
* SOFTWARE
|
26
|
-
*/
|
27
|
-
|
28
|
-
import { Linter } from "../index";
|
29
|
-
|
30
|
-
export interface StylisticIssues extends Linter.RulesRecord {
|
31
|
-
/**
|
32
|
-
* Rule to enforce linebreaks after opening and before closing array brackets.
|
33
|
-
*
|
34
|
-
* @since 4.0.0-alpha.1
|
35
|
-
* @deprecated since 8.53.0, please use the [corresponding rule](https://eslint.style/rules/js/array-bracket-newline) in `@stylistic/eslint-plugin-js`.
|
36
|
-
* @see https://eslint.org/docs/latest/rules/array-bracket-newline
|
37
|
-
*/
|
38
|
-
"array-bracket-newline": Linter.RuleEntry<
|
39
|
-
[
|
40
|
-
| "always"
|
41
|
-
| "never"
|
42
|
-
| "consistent"
|
43
|
-
| Partial<{
|
44
|
-
/**
|
45
|
-
* @default true
|
46
|
-
*/
|
47
|
-
multiline: boolean;
|
48
|
-
/**
|
49
|
-
* @default null
|
50
|
-
*/
|
51
|
-
minItems: number | null;
|
52
|
-
}>,
|
53
|
-
]
|
54
|
-
>;
|
55
|
-
|
56
|
-
/**
|
57
|
-
* Rule to enforce consistent spacing inside array brackets.
|
58
|
-
*
|
59
|
-
* @since 0.24.0
|
60
|
-
* @deprecated since 8.53.0, please use the [corresponding rule](https://eslint.style/rules/js/array-bracket-spacing) in `@stylistic/eslint-plugin-js`.
|
61
|
-
* @see https://eslint.org/docs/latest/rules/array-bracket-spacing
|
62
|
-
*/
|
63
|
-
"array-bracket-spacing":
|
64
|
-
| Linter.RuleEntry<
|
65
|
-
[
|
66
|
-
"never",
|
67
|
-
Partial<{
|
68
|
-
/**
|
69
|
-
* @default false
|
70
|
-
*/
|
71
|
-
singleValue: boolean;
|
72
|
-
/**
|
73
|
-
* @default false
|
74
|
-
*/
|
75
|
-
objectsInArrays: boolean;
|
76
|
-
/**
|
77
|
-
* @default false
|
78
|
-
*/
|
79
|
-
arraysInArrays: boolean;
|
80
|
-
}>,
|
81
|
-
]
|
82
|
-
>
|
83
|
-
| Linter.RuleEntry<
|
84
|
-
[
|
85
|
-
"always",
|
86
|
-
Partial<{
|
87
|
-
/**
|
88
|
-
* @default true
|
89
|
-
*/
|
90
|
-
singleValue: boolean;
|
91
|
-
/**
|
92
|
-
* @default true
|
93
|
-
*/
|
94
|
-
objectsInArrays: boolean;
|
95
|
-
/**
|
96
|
-
* @default true
|
97
|
-
*/
|
98
|
-
arraysInArrays: boolean;
|
99
|
-
}>,
|
100
|
-
]
|
101
|
-
>;
|
102
|
-
|
103
|
-
/**
|
104
|
-
* Rule to enforce line breaks after each array element.
|
105
|
-
*
|
106
|
-
* @since 4.0.0-rc.0
|
107
|
-
* @deprecated since 8.53.0, please use the [corresponding rule](https://eslint.style/rules/js/array-element-newline) in `@stylistic/eslint-plugin-js`.
|
108
|
-
* @see https://eslint.org/docs/latest/rules/array-element-newline
|
109
|
-
*/
|
110
|
-
"array-element-newline": Linter.RuleEntry<
|
111
|
-
[
|
112
|
-
| "always"
|
113
|
-
| "never"
|
114
|
-
| "consistent"
|
115
|
-
| Partial<{
|
116
|
-
/**
|
117
|
-
* @default true
|
118
|
-
*/
|
119
|
-
multiline: boolean;
|
120
|
-
/**
|
121
|
-
* @default null
|
122
|
-
*/
|
123
|
-
minItems: number | null;
|
124
|
-
}>,
|
125
|
-
]
|
126
|
-
>;
|
127
|
-
|
128
|
-
/**
|
129
|
-
* Rule to disallow or enforce spaces inside of blocks after opening block and before closing block.
|
130
|
-
*
|
131
|
-
* @since 1.2.0
|
132
|
-
* @deprecated since 8.53.0, please use the [corresponding rule](https://eslint.style/rules/js/block-spacing) in `@stylistic/eslint-plugin-js`.
|
133
|
-
* @see https://eslint.org/docs/latest/rules/block-spacing
|
134
|
-
*/
|
135
|
-
"block-spacing": Linter.RuleEntry<["always" | "never"]>;
|
136
|
-
|
137
|
-
/**
|
138
|
-
* Rule to enforce consistent brace style for blocks.
|
139
|
-
*
|
140
|
-
* @since 0.0.7
|
141
|
-
* @deprecated since 8.53.0, please use the [corresponding rule](https://eslint.style/rules/js/brace-style) in `@stylistic/eslint-plugin-js`.
|
142
|
-
* @see https://eslint.org/docs/latest/rules/brace-style
|
143
|
-
*/
|
144
|
-
"brace-style": Linter.RuleEntry<
|
145
|
-
[
|
146
|
-
"1tbs" | "stroustrup" | "allman",
|
147
|
-
Partial<{
|
148
|
-
/**
|
149
|
-
* @default false
|
150
|
-
*/
|
151
|
-
allowSingleLine: boolean;
|
152
|
-
}>,
|
153
|
-
]
|
154
|
-
>;
|
155
|
-
|
156
|
-
/**
|
157
|
-
* Rule to enforce camelcase naming convention.
|
158
|
-
*
|
159
|
-
* @since 0.0.2
|
160
|
-
* @see https://eslint.org/docs/latest/rules/camelcase
|
161
|
-
*/
|
162
|
-
camelcase: Linter.RuleEntry<
|
163
|
-
[
|
164
|
-
Partial<{
|
165
|
-
/**
|
166
|
-
* @default 'always'
|
167
|
-
*/
|
168
|
-
properties: "always" | "never";
|
169
|
-
/**
|
170
|
-
* @default false
|
171
|
-
*/
|
172
|
-
ignoreDestructuring: boolean;
|
173
|
-
/**
|
174
|
-
* @since 6.7.0
|
175
|
-
* @default false
|
176
|
-
*/
|
177
|
-
ignoreImports: boolean;
|
178
|
-
/**
|
179
|
-
* @since 7.4.0
|
180
|
-
* @default false
|
181
|
-
*/
|
182
|
-
ignoreGlobals: boolean;
|
183
|
-
/**
|
184
|
-
* @remarks
|
185
|
-
* Also accept for regular expression patterns
|
186
|
-
*/
|
187
|
-
allow: string[];
|
188
|
-
}>,
|
189
|
-
]
|
190
|
-
>;
|
191
|
-
|
192
|
-
/**
|
193
|
-
* Rule to enforce or disallow capitalization of the first letter of a comment.
|
194
|
-
*
|
195
|
-
* @since 3.11.0
|
196
|
-
* @see https://eslint.org/docs/latest/rules/capitalized-comments
|
197
|
-
*/
|
198
|
-
"capitalized-comments": Linter.RuleEntry<
|
199
|
-
[
|
200
|
-
"always" | "never",
|
201
|
-
Partial<{
|
202
|
-
ignorePattern: string;
|
203
|
-
/**
|
204
|
-
* @default false
|
205
|
-
*/
|
206
|
-
ignoreInlineComments: boolean;
|
207
|
-
/**
|
208
|
-
* @default false
|
209
|
-
*/
|
210
|
-
ignoreConsecutiveComments: boolean;
|
211
|
-
}>,
|
212
|
-
]
|
213
|
-
>;
|
214
|
-
|
215
|
-
/**
|
216
|
-
* Rule to require or disallow trailing commas.
|
217
|
-
*
|
218
|
-
* @since 0.16.0
|
219
|
-
* @deprecated since 8.53.0, please use the [corresponding rule](https://eslint.style/rules/js/comma-dangle) in `@stylistic/eslint-plugin-js`.
|
220
|
-
* @see https://eslint.org/docs/latest/rules/comma-dangle
|
221
|
-
*/
|
222
|
-
"comma-dangle": Linter.RuleEntry<
|
223
|
-
[
|
224
|
-
| "never"
|
225
|
-
| "always"
|
226
|
-
| "always-multiline"
|
227
|
-
| "only-multiline"
|
228
|
-
| Partial<{
|
229
|
-
/**
|
230
|
-
* @default 'never'
|
231
|
-
*/
|
232
|
-
arrays: "never" | "always" | "always-multiline" | "only-multiline";
|
233
|
-
/**
|
234
|
-
* @default 'never'
|
235
|
-
*/
|
236
|
-
objects: "never" | "always" | "always-multiline" | "only-multiline";
|
237
|
-
/**
|
238
|
-
* @default 'never'
|
239
|
-
*/
|
240
|
-
imports: "never" | "always" | "always-multiline" | "only-multiline";
|
241
|
-
/**
|
242
|
-
* @default 'never'
|
243
|
-
*/
|
244
|
-
exports: "never" | "always" | "always-multiline" | "only-multiline";
|
245
|
-
/**
|
246
|
-
* @default 'never'
|
247
|
-
*/
|
248
|
-
functions: "never" | "always" | "always-multiline" | "only-multiline";
|
249
|
-
}>,
|
250
|
-
]
|
251
|
-
>;
|
252
|
-
|
253
|
-
/**
|
254
|
-
* Rule to enforce consistent spacing before and after commas.
|
255
|
-
*
|
256
|
-
* @since 0.9.0
|
257
|
-
* @deprecated since 8.53.0, please use the [corresponding rule](https://eslint.style/rules/js/comma-spacing) in `@stylistic/eslint-plugin-js`.
|
258
|
-
* @see https://eslint.org/docs/latest/rules/comma-spacing
|
259
|
-
*/
|
260
|
-
"comma-spacing": Linter.RuleEntry<
|
261
|
-
[
|
262
|
-
Partial<{
|
263
|
-
/**
|
264
|
-
* @default false
|
265
|
-
*/
|
266
|
-
before: boolean;
|
267
|
-
/**
|
268
|
-
* @default true
|
269
|
-
*/
|
270
|
-
after: boolean;
|
271
|
-
}>,
|
272
|
-
]
|
273
|
-
>;
|
274
|
-
|
275
|
-
/**
|
276
|
-
* Rule to enforce consistent comma style.
|
277
|
-
*
|
278
|
-
* @since 0.9.0
|
279
|
-
* @deprecated since 8.53.0, please use the [corresponding rule](https://eslint.style/rules/js/comma-style) in `@stylistic/eslint-plugin-js`.
|
280
|
-
* @see https://eslint.org/docs/latest/rules/comma-style
|
281
|
-
*/
|
282
|
-
"comma-style": Linter.RuleEntry<
|
283
|
-
[
|
284
|
-
"last" | "first",
|
285
|
-
Partial<{
|
286
|
-
exceptions: Record<string, boolean>;
|
287
|
-
}>,
|
288
|
-
]
|
289
|
-
>;
|
290
|
-
|
291
|
-
/**
|
292
|
-
* Rule to enforce consistent spacing inside computed property brackets.
|
293
|
-
*
|
294
|
-
* @since 0.23.0
|
295
|
-
* @deprecated since 8.53.0, please use the [corresponding rule](https://eslint.style/rules/js/computed-property-spacing) in `@stylistic/eslint-plugin-js`.
|
296
|
-
* @see https://eslint.org/docs/latest/rules/computed-property-spacing
|
297
|
-
*/
|
298
|
-
"computed-property-spacing": Linter.RuleEntry<["never" | "always"]>;
|
299
|
-
|
300
|
-
/**
|
301
|
-
* Rule to enforce consistent naming when capturing the current execution context.
|
302
|
-
*
|
303
|
-
* @since 0.0.9
|
304
|
-
* @see https://eslint.org/docs/latest/rules/consistent-this
|
305
|
-
*/
|
306
|
-
"consistent-this": Linter.RuleEntry<[...string[]]>;
|
307
|
-
|
308
|
-
/**
|
309
|
-
* Rule to require or disallow newline at the end of files.
|
310
|
-
*
|
311
|
-
* @since 0.7.1
|
312
|
-
* @deprecated since 8.53.0, please use the [corresponding rule](https://eslint.style/rules/js/eol-last) in `@stylistic/eslint-plugin-js`.
|
313
|
-
* @see https://eslint.org/docs/latest/rules/eol-last
|
314
|
-
*/
|
315
|
-
"eol-last": Linter.RuleEntry<
|
316
|
-
[
|
317
|
-
"always" | "never", // | 'unix' | 'windows'
|
318
|
-
]
|
319
|
-
>;
|
320
|
-
|
321
|
-
/**
|
322
|
-
* Rule to require or disallow spacing between function identifiers and their invocations.
|
323
|
-
*
|
324
|
-
* @since 3.3.0
|
325
|
-
* @deprecated since 8.53.0, please use the [corresponding rule](https://eslint.style/rules/js/function-call-spacing) in `@stylistic/eslint-plugin-js`.
|
326
|
-
* @see https://eslint.org/docs/latest/rules/func-call-spacing
|
327
|
-
*/
|
328
|
-
"func-call-spacing": Linter.RuleEntry<["never" | "always"]>;
|
329
|
-
|
330
|
-
/**
|
331
|
-
* Rule to require function names to match the name of the variable or property to which they are assigned.
|
332
|
-
*
|
333
|
-
* @since 3.8.0
|
334
|
-
* @see https://eslint.org/docs/latest/rules/func-name-matching
|
335
|
-
*/
|
336
|
-
"func-name-matching":
|
337
|
-
| Linter.RuleEntry<
|
338
|
-
[
|
339
|
-
"always" | "never",
|
340
|
-
Partial<{
|
341
|
-
/**
|
342
|
-
* @default false
|
343
|
-
*/
|
344
|
-
considerPropertyDescriptor: boolean;
|
345
|
-
/**
|
346
|
-
* @default false
|
347
|
-
*/
|
348
|
-
includeCommonJSModuleExports: boolean;
|
349
|
-
}>,
|
350
|
-
]
|
351
|
-
>
|
352
|
-
| Linter.RuleEntry<
|
353
|
-
[
|
354
|
-
Partial<{
|
355
|
-
/**
|
356
|
-
* @default false
|
357
|
-
*/
|
358
|
-
considerPropertyDescriptor: boolean;
|
359
|
-
/**
|
360
|
-
* @default false
|
361
|
-
*/
|
362
|
-
includeCommonJSModuleExports: boolean;
|
363
|
-
}>,
|
364
|
-
]
|
365
|
-
>;
|
366
|
-
|
367
|
-
/**
|
368
|
-
* Rule to require or disallow named `function` expressions.
|
369
|
-
*
|
370
|
-
* @since 0.4.0
|
371
|
-
* @see https://eslint.org/docs/latest/rules/func-names
|
372
|
-
*/
|
373
|
-
"func-names": Linter.RuleEntry<
|
374
|
-
[
|
375
|
-
"always" | "as-needed" | "never",
|
376
|
-
Partial<{
|
377
|
-
generators: "always" | "as-needed" | "never";
|
378
|
-
}>,
|
379
|
-
]
|
380
|
-
>;
|
381
|
-
|
382
|
-
/**
|
383
|
-
* Rule to enforce the consistent use of either `function` declarations or expressions assigned to variables.
|
384
|
-
*
|
385
|
-
* @since 0.2.0
|
386
|
-
* @see https://eslint.org/docs/latest/rules/func-style
|
387
|
-
*/
|
388
|
-
"func-style": Linter.RuleEntry<
|
389
|
-
[
|
390
|
-
"expression" | "declaration",
|
391
|
-
Partial<{
|
392
|
-
/**
|
393
|
-
* @default false
|
394
|
-
*/
|
395
|
-
allowArrowFunctions: boolean;
|
396
|
-
overrides: {
|
397
|
-
namedExports: "declaration" | "expression" | "ignore";
|
398
|
-
}
|
399
|
-
}>,
|
400
|
-
]
|
401
|
-
>;
|
402
|
-
|
403
|
-
/**
|
404
|
-
* Rule to enforce consistent line breaks inside function parentheses.
|
405
|
-
*
|
406
|
-
* @since 4.6.0
|
407
|
-
* @deprecated since 8.53.0, please use the [corresponding rule](https://eslint.style/rules/js/function-paren-newline) in `@stylistic/eslint-plugin-js`.
|
408
|
-
* @see https://eslint.org/docs/latest/rules/function-paren-newline
|
409
|
-
*/
|
410
|
-
"function-paren-newline": Linter.RuleEntry<
|
411
|
-
[
|
412
|
-
| "always"
|
413
|
-
| "never"
|
414
|
-
| "multiline"
|
415
|
-
| "multiline-arguments"
|
416
|
-
| "consistent"
|
417
|
-
| Partial<{
|
418
|
-
minItems: number;
|
419
|
-
}>,
|
420
|
-
]
|
421
|
-
>;
|
422
|
-
|
423
|
-
/**
|
424
|
-
* Rule to disallow specified identifiers.
|
425
|
-
*
|
426
|
-
* @since 2.0.0-beta.2
|
427
|
-
* @deprecated please use [`id-denylist`](https://eslint.org/docs/latest/rules/id-denylist).
|
428
|
-
* @see https://eslint.org/docs/latest/rules/id-blacklist
|
429
|
-
*/
|
430
|
-
"id-blacklist": Linter.RuleEntry<[...string[]]>;
|
431
|
-
|
432
|
-
/**
|
433
|
-
* Rule to disallow specified identifiers.
|
434
|
-
*
|
435
|
-
* @since 7.4.0
|
436
|
-
* @see https://eslint.org/docs/latest/rules/id-denylist
|
437
|
-
*/
|
438
|
-
"id-denylist": Linter.RuleEntry<string[]>;
|
439
|
-
|
440
|
-
/**
|
441
|
-
* Rule to enforce minimum and maximum identifier lengths.
|
442
|
-
*
|
443
|
-
* @since 1.0.0
|
444
|
-
* @see https://eslint.org/docs/latest/rules/id-length
|
445
|
-
*/
|
446
|
-
"id-length": Linter.RuleEntry<
|
447
|
-
[
|
448
|
-
Partial<{
|
449
|
-
/**
|
450
|
-
* @default 2
|
451
|
-
*/
|
452
|
-
min: number;
|
453
|
-
/**
|
454
|
-
* @default Infinity
|
455
|
-
*/
|
456
|
-
max: number;
|
457
|
-
/**
|
458
|
-
* @default 'always'
|
459
|
-
*/
|
460
|
-
properties: "always" | "never";
|
461
|
-
exceptions: string[];
|
462
|
-
}>,
|
463
|
-
]
|
464
|
-
>;
|
465
|
-
|
466
|
-
/**
|
467
|
-
* Rule to require identifiers to match a specified regular expression.
|
468
|
-
*
|
469
|
-
* @since 1.0.0
|
470
|
-
* @see https://eslint.org/docs/latest/rules/id-match
|
471
|
-
*/
|
472
|
-
"id-match": Linter.RuleEntry<
|
473
|
-
[
|
474
|
-
string,
|
475
|
-
Partial<{
|
476
|
-
/**
|
477
|
-
* @default false
|
478
|
-
*/
|
479
|
-
properties: boolean;
|
480
|
-
/**
|
481
|
-
* @default false
|
482
|
-
*/
|
483
|
-
onlyDeclarations: boolean;
|
484
|
-
/**
|
485
|
-
* @default false
|
486
|
-
*/
|
487
|
-
ignoreDestructuring: boolean;
|
488
|
-
}>,
|
489
|
-
]
|
490
|
-
>;
|
491
|
-
|
492
|
-
/**
|
493
|
-
* Rule to enforce the location of arrow function bodies.
|
494
|
-
*
|
495
|
-
* @since 4.12.0
|
496
|
-
* @deprecated since 8.53.0, please use the [corresponding rule](https://eslint.style/rules/js/implicit-arrow-linebreak) in `@stylistic/eslint-plugin-js`.
|
497
|
-
* @see https://eslint.org/docs/latest/rules/implicit-arrow-linebreak
|
498
|
-
*/
|
499
|
-
"implicit-arrow-linebreak": Linter.RuleEntry<["beside" | "below"]>;
|
500
|
-
|
501
|
-
/**
|
502
|
-
* Rule to enforce consistent indentation.
|
503
|
-
*
|
504
|
-
* @since 0.14.0
|
505
|
-
* @deprecated since 8.53.0, please use the [corresponding rule](https://eslint.style/rules/js/indent) in `@stylistic/eslint-plugin-js`.
|
506
|
-
* @see https://eslint.org/docs/latest/rules/indent
|
507
|
-
*/
|
508
|
-
indent: Linter.RuleEntry<
|
509
|
-
[
|
510
|
-
number | "tab",
|
511
|
-
Partial<{
|
512
|
-
/**
|
513
|
-
* @default 0
|
514
|
-
*/
|
515
|
-
SwitchCase: number;
|
516
|
-
/**
|
517
|
-
* @default 1
|
518
|
-
*/
|
519
|
-
VariableDeclarator:
|
520
|
-
| Partial<{
|
521
|
-
/**
|
522
|
-
* @default 1
|
523
|
-
*/
|
524
|
-
var: number | "first";
|
525
|
-
/**
|
526
|
-
* @default 1
|
527
|
-
*/
|
528
|
-
let: number | "first";
|
529
|
-
/**
|
530
|
-
* @default 1
|
531
|
-
*/
|
532
|
-
const: number | "first";
|
533
|
-
}>
|
534
|
-
| number
|
535
|
-
| "first";
|
536
|
-
/**
|
537
|
-
* @default 1
|
538
|
-
*/
|
539
|
-
outerIIFEBody: number;
|
540
|
-
/**
|
541
|
-
* @default 1
|
542
|
-
*/
|
543
|
-
MemberExpression: number | "off";
|
544
|
-
/**
|
545
|
-
* @default { parameters: 1, body: 1 }
|
546
|
-
*/
|
547
|
-
FunctionDeclaration: Partial<{
|
548
|
-
/**
|
549
|
-
* @default 1
|
550
|
-
*/
|
551
|
-
parameters: number | "first" | "off";
|
552
|
-
/**
|
553
|
-
* @default 1
|
554
|
-
*/
|
555
|
-
body: number;
|
556
|
-
}>;
|
557
|
-
/**
|
558
|
-
* @default { parameters: 1, body: 1 }
|
559
|
-
*/
|
560
|
-
FunctionExpression: Partial<{
|
561
|
-
/**
|
562
|
-
* @default 1
|
563
|
-
*/
|
564
|
-
parameters: number | "first" | "off";
|
565
|
-
/**
|
566
|
-
* @default 1
|
567
|
-
*/
|
568
|
-
body: number;
|
569
|
-
}>;
|
570
|
-
/**
|
571
|
-
* @default { arguments: 1 }
|
572
|
-
*/
|
573
|
-
CallExpression: Partial<{
|
574
|
-
/**
|
575
|
-
* @default 1
|
576
|
-
*/
|
577
|
-
arguments: number | "first" | "off";
|
578
|
-
}>;
|
579
|
-
/**
|
580
|
-
* @default 1
|
581
|
-
*/
|
582
|
-
ArrayExpression: number | "first" | "off";
|
583
|
-
/**
|
584
|
-
* @default 1
|
585
|
-
*/
|
586
|
-
ObjectExpression: number | "first" | "off";
|
587
|
-
/**
|
588
|
-
* @default 1
|
589
|
-
*/
|
590
|
-
ImportDeclaration: number | "first" | "off";
|
591
|
-
/**
|
592
|
-
* @default false
|
593
|
-
*/
|
594
|
-
flatTernaryExpressions: boolean;
|
595
|
-
ignoredNodes: string[];
|
596
|
-
/**
|
597
|
-
* @default false
|
598
|
-
*/
|
599
|
-
ignoreComments: boolean;
|
600
|
-
}>,
|
601
|
-
]
|
602
|
-
>;
|
603
|
-
|
604
|
-
/**
|
605
|
-
* Rule to enforce the consistent use of either double or single quotes in JSX attributes.
|
606
|
-
*
|
607
|
-
* @since 1.4.0
|
608
|
-
* @deprecated since 8.53.0, please use the [corresponding rule](https://eslint.style/rules/js/jsx-quotes) in `@stylistic/eslint-plugin-js`.
|
609
|
-
* @see https://eslint.org/docs/latest/rules/jsx-quotes
|
610
|
-
*/
|
611
|
-
"jsx-quotes": Linter.RuleEntry<["prefer-double" | "prefer-single"]>;
|
612
|
-
|
613
|
-
/**
|
614
|
-
* Rule to enforce consistent spacing between keys and values in object literal properties.
|
615
|
-
*
|
616
|
-
* @since 0.9.0
|
617
|
-
* @deprecated since 8.53.0, please use the [corresponding rule](https://eslint.style/rules/js/key-spacing) in `@stylistic/eslint-plugin-js`.
|
618
|
-
* @see https://eslint.org/docs/latest/rules/key-spacing
|
619
|
-
*/
|
620
|
-
"key-spacing": Linter.RuleEntry<
|
621
|
-
[
|
622
|
-
| Partial<
|
623
|
-
| {
|
624
|
-
/**
|
625
|
-
* @default false
|
626
|
-
*/
|
627
|
-
beforeColon: boolean;
|
628
|
-
/**
|
629
|
-
* @default true
|
630
|
-
*/
|
631
|
-
afterColon: boolean;
|
632
|
-
/**
|
633
|
-
* @default 'strict'
|
634
|
-
*/
|
635
|
-
mode: "strict" | "minimum";
|
636
|
-
align:
|
637
|
-
| Partial<{
|
638
|
-
/**
|
639
|
-
* @default false
|
640
|
-
*/
|
641
|
-
beforeColon: boolean;
|
642
|
-
/**
|
643
|
-
* @default true
|
644
|
-
*/
|
645
|
-
afterColon: boolean;
|
646
|
-
/**
|
647
|
-
* @default 'colon'
|
648
|
-
*/
|
649
|
-
on: "value" | "colon";
|
650
|
-
/**
|
651
|
-
* @default 'strict'
|
652
|
-
*/
|
653
|
-
mode: "strict" | "minimum";
|
654
|
-
}>
|
655
|
-
| "value"
|
656
|
-
| "colon";
|
657
|
-
}
|
658
|
-
| {
|
659
|
-
singleLine?:
|
660
|
-
| Partial<{
|
661
|
-
/**
|
662
|
-
* @default false
|
663
|
-
*/
|
664
|
-
beforeColon: boolean;
|
665
|
-
/**
|
666
|
-
* @default true
|
667
|
-
*/
|
668
|
-
afterColon: boolean;
|
669
|
-
/**
|
670
|
-
* @default 'strict'
|
671
|
-
*/
|
672
|
-
mode: "strict" | "minimum";
|
673
|
-
}>
|
674
|
-
| undefined;
|
675
|
-
multiLine?:
|
676
|
-
| Partial<{
|
677
|
-
/**
|
678
|
-
* @default false
|
679
|
-
*/
|
680
|
-
beforeColon: boolean;
|
681
|
-
/**
|
682
|
-
* @default true
|
683
|
-
*/
|
684
|
-
afterColon: boolean;
|
685
|
-
/**
|
686
|
-
* @default 'strict'
|
687
|
-
*/
|
688
|
-
mode: "strict" | "minimum";
|
689
|
-
align:
|
690
|
-
| Partial<{
|
691
|
-
/**
|
692
|
-
* @default false
|
693
|
-
*/
|
694
|
-
beforeColon: boolean;
|
695
|
-
/**
|
696
|
-
* @default true
|
697
|
-
*/
|
698
|
-
afterColon: boolean;
|
699
|
-
/**
|
700
|
-
* @default 'colon'
|
701
|
-
*/
|
702
|
-
on: "value" | "colon";
|
703
|
-
/**
|
704
|
-
* @default 'strict'
|
705
|
-
*/
|
706
|
-
mode: "strict" | "minimum";
|
707
|
-
}>
|
708
|
-
| "value"
|
709
|
-
| "colon";
|
710
|
-
}>
|
711
|
-
| undefined;
|
712
|
-
}
|
713
|
-
>
|
714
|
-
| {
|
715
|
-
align: Partial<{
|
716
|
-
/**
|
717
|
-
* @default false
|
718
|
-
*/
|
719
|
-
beforeColon: boolean;
|
720
|
-
/**
|
721
|
-
* @default true
|
722
|
-
*/
|
723
|
-
afterColon: boolean;
|
724
|
-
/**
|
725
|
-
* @default 'colon'
|
726
|
-
*/
|
727
|
-
on: "value" | "colon";
|
728
|
-
/**
|
729
|
-
* @default 'strict'
|
730
|
-
*/
|
731
|
-
mode: "strict" | "minimum";
|
732
|
-
}>;
|
733
|
-
singleLine?:
|
734
|
-
| Partial<{
|
735
|
-
/**
|
736
|
-
* @default false
|
737
|
-
*/
|
738
|
-
beforeColon: boolean;
|
739
|
-
/**
|
740
|
-
* @default true
|
741
|
-
*/
|
742
|
-
afterColon: boolean;
|
743
|
-
/**
|
744
|
-
* @default 'strict'
|
745
|
-
*/
|
746
|
-
mode: "strict" | "minimum";
|
747
|
-
}>
|
748
|
-
| undefined;
|
749
|
-
multiLine?:
|
750
|
-
| Partial<{
|
751
|
-
/**
|
752
|
-
* @default false
|
753
|
-
*/
|
754
|
-
beforeColon: boolean;
|
755
|
-
/**
|
756
|
-
* @default true
|
757
|
-
*/
|
758
|
-
afterColon: boolean;
|
759
|
-
/**
|
760
|
-
* @default 'strict'
|
761
|
-
*/
|
762
|
-
mode: "strict" | "minimum";
|
763
|
-
}>
|
764
|
-
| undefined;
|
765
|
-
},
|
766
|
-
]
|
767
|
-
>;
|
768
|
-
|
769
|
-
/**
|
770
|
-
* Rule to enforce consistent spacing before and after keywords.
|
771
|
-
*
|
772
|
-
* @since 2.0.0-beta.1
|
773
|
-
* @deprecated since 8.53.0, please use the [corresponding rule](https://eslint.style/rules/js/keyword-spacing) in `@stylistic/eslint-plugin-js`.
|
774
|
-
* @see https://eslint.org/docs/latest/rules/keyword-spacing
|
775
|
-
*/
|
776
|
-
"keyword-spacing": Linter.RuleEntry<
|
777
|
-
[
|
778
|
-
Partial<{
|
779
|
-
/**
|
780
|
-
* @default true
|
781
|
-
*/
|
782
|
-
before: boolean;
|
783
|
-
/**
|
784
|
-
* @default true
|
785
|
-
*/
|
786
|
-
after: boolean;
|
787
|
-
overrides: Record<
|
788
|
-
string,
|
789
|
-
Partial<{
|
790
|
-
before: boolean;
|
791
|
-
after: boolean;
|
792
|
-
}>
|
793
|
-
>;
|
794
|
-
}>,
|
795
|
-
]
|
796
|
-
>;
|
797
|
-
|
798
|
-
/**
|
799
|
-
* Rule to enforce position of line comments.
|
800
|
-
*
|
801
|
-
* @since 3.5.0
|
802
|
-
* @deprecated since 9.3.0, please use the [corresponding rule](https://eslint.style/rules/js/line-comment-position) in `@stylistic/eslint-plugin-js`.
|
803
|
-
* @see https://eslint.org/docs/latest/rules/line-comment-position
|
804
|
-
*/
|
805
|
-
"line-comment-position": Linter.RuleEntry<
|
806
|
-
[
|
807
|
-
Partial<{
|
808
|
-
/**
|
809
|
-
* @default 'above'
|
810
|
-
*/
|
811
|
-
position: "above" | "beside";
|
812
|
-
ignorePattern: string;
|
813
|
-
/**
|
814
|
-
* @default true
|
815
|
-
*/
|
816
|
-
applyDefaultIgnorePatterns: boolean;
|
817
|
-
}>,
|
818
|
-
]
|
819
|
-
>;
|
820
|
-
|
821
|
-
/**
|
822
|
-
* Rule to enforce consistent linebreak style.
|
823
|
-
*
|
824
|
-
* @since 0.21.0
|
825
|
-
* @deprecated since 8.53.0, please use the [corresponding rule](https://eslint.style/rules/js/linebreak-style) in `@stylistic/eslint-plugin-js`.
|
826
|
-
* @see https://eslint.org/docs/latest/rules/linebreak-style
|
827
|
-
*/
|
828
|
-
"linebreak-style": Linter.RuleEntry<["unix" | "windows"]>;
|
829
|
-
|
830
|
-
/**
|
831
|
-
* Rule to require empty lines around comments.
|
832
|
-
*
|
833
|
-
* @since 0.22.0
|
834
|
-
* @deprecated since 8.53.0, please use the [corresponding rule](https://eslint.style/rules/js/lines-around-comment) in `@stylistic/eslint-plugin-js`.
|
835
|
-
* @see https://eslint.org/docs/latest/rules/lines-around-comment
|
836
|
-
*/
|
837
|
-
"lines-around-comment": Linter.RuleEntry<
|
838
|
-
[
|
839
|
-
Partial<{
|
840
|
-
/**
|
841
|
-
* @default true
|
842
|
-
*/
|
843
|
-
beforeBlockComment: boolean;
|
844
|
-
/**
|
845
|
-
* @default false
|
846
|
-
*/
|
847
|
-
afterBlockComment: boolean;
|
848
|
-
/**
|
849
|
-
* @default false
|
850
|
-
*/
|
851
|
-
beforeLineComment: boolean;
|
852
|
-
/**
|
853
|
-
* @default false
|
854
|
-
*/
|
855
|
-
afterLineComment: boolean;
|
856
|
-
/**
|
857
|
-
* @default false
|
858
|
-
*/
|
859
|
-
allowBlockStart: boolean;
|
860
|
-
/**
|
861
|
-
* @default false
|
862
|
-
*/
|
863
|
-
allowBlockEnd: boolean;
|
864
|
-
/**
|
865
|
-
* @default false
|
866
|
-
*/
|
867
|
-
allowObjectStart: boolean;
|
868
|
-
/**
|
869
|
-
* @default false
|
870
|
-
*/
|
871
|
-
allowObjectEnd: boolean;
|
872
|
-
/**
|
873
|
-
* @default false
|
874
|
-
*/
|
875
|
-
allowArrayStart: boolean;
|
876
|
-
/**
|
877
|
-
* @default false
|
878
|
-
*/
|
879
|
-
allowArrayEnd: boolean;
|
880
|
-
/**
|
881
|
-
* @default false
|
882
|
-
*/
|
883
|
-
allowClassStart: boolean;
|
884
|
-
/**
|
885
|
-
* @default false
|
886
|
-
*/
|
887
|
-
allowClassEnd: boolean;
|
888
|
-
ignorePattern: string;
|
889
|
-
/**
|
890
|
-
* @default true
|
891
|
-
*/
|
892
|
-
applyDefaultIgnorePatterns: boolean;
|
893
|
-
}>,
|
894
|
-
]
|
895
|
-
>;
|
896
|
-
|
897
|
-
/**
|
898
|
-
* Rule to require or disallow an empty line between class members.
|
899
|
-
*
|
900
|
-
* @since 4.9.0
|
901
|
-
* @deprecated since 8.53.0, please use the [corresponding rule](https://eslint.style/rules/js/lines-between-class-members) in `@stylistic/eslint-plugin-js`.
|
902
|
-
* @see https://eslint.org/docs/latest/rules/lines-between-class-members
|
903
|
-
*/
|
904
|
-
"lines-between-class-members": Linter.RuleEntry<
|
905
|
-
[
|
906
|
-
"always" | "never" | {
|
907
|
-
enforce: Array<
|
908
|
-
{
|
909
|
-
blankLine: "always" | "never";
|
910
|
-
prev: "method" | "field" | "*";
|
911
|
-
next: "method" | "field" | "*";
|
912
|
-
}
|
913
|
-
>
|
914
|
-
},
|
915
|
-
Partial<{
|
916
|
-
/**
|
917
|
-
* @default false
|
918
|
-
*/
|
919
|
-
exceptAfterSingleLine: boolean;
|
920
|
-
}>,
|
921
|
-
]
|
922
|
-
>;
|
923
|
-
|
924
|
-
/**
|
925
|
-
* Rule to enforce a maximum depth that blocks can be nested.
|
926
|
-
*
|
927
|
-
* @since 0.0.9
|
928
|
-
* @see https://eslint.org/docs/latest/rules/max-depth
|
929
|
-
*/
|
930
|
-
"max-depth": Linter.RuleEntry<
|
931
|
-
[
|
932
|
-
Partial<{
|
933
|
-
/**
|
934
|
-
* @default 4
|
935
|
-
*/
|
936
|
-
max: number;
|
937
|
-
}>,
|
938
|
-
]
|
939
|
-
>;
|
940
|
-
|
941
|
-
/**
|
942
|
-
* Rule to enforce a maximum line length.
|
943
|
-
*
|
944
|
-
* @since 0.0.9
|
945
|
-
* @deprecated since 8.53.0, please use the [corresponding rule](https://eslint.style/rules/js/max-len) in `@stylistic/eslint-plugin-js`.
|
946
|
-
* @see https://eslint.org/docs/latest/rules/max-len
|
947
|
-
*/
|
948
|
-
"max-len": Linter.RuleEntry<
|
949
|
-
[
|
950
|
-
Partial<{
|
951
|
-
/**
|
952
|
-
* @default 80
|
953
|
-
*/
|
954
|
-
code: number;
|
955
|
-
/**
|
956
|
-
* @default 4
|
957
|
-
*/
|
958
|
-
tabWidth: number;
|
959
|
-
comments: number;
|
960
|
-
ignorePattern: string;
|
961
|
-
/**
|
962
|
-
* @default false
|
963
|
-
*/
|
964
|
-
ignoreComments: boolean;
|
965
|
-
/**
|
966
|
-
* @default false
|
967
|
-
*/
|
968
|
-
ignoreTrailingComments: boolean;
|
969
|
-
/**
|
970
|
-
* @default false
|
971
|
-
*/
|
972
|
-
ignoreUrls: boolean;
|
973
|
-
/**
|
974
|
-
* @default false
|
975
|
-
*/
|
976
|
-
ignoreStrings: boolean;
|
977
|
-
/**
|
978
|
-
* @default false
|
979
|
-
*/
|
980
|
-
ignoreTemplateLiterals: boolean;
|
981
|
-
/**
|
982
|
-
* @default false
|
983
|
-
*/
|
984
|
-
ignoreRegExpLiterals: boolean;
|
985
|
-
}>,
|
986
|
-
]
|
987
|
-
>;
|
988
|
-
|
989
|
-
/**
|
990
|
-
* Rule to enforce a maximum number of lines per file.
|
991
|
-
*
|
992
|
-
* @since 2.12.0
|
993
|
-
* @see https://eslint.org/docs/latest/rules/max-lines
|
994
|
-
*/
|
995
|
-
"max-lines": Linter.RuleEntry<
|
996
|
-
[
|
997
|
-
| Partial<{
|
998
|
-
/**
|
999
|
-
* @default 300
|
1000
|
-
*/
|
1001
|
-
max: number;
|
1002
|
-
/**
|
1003
|
-
* @default false
|
1004
|
-
*/
|
1005
|
-
skipBlankLines: boolean;
|
1006
|
-
/**
|
1007
|
-
* @default false
|
1008
|
-
*/
|
1009
|
-
skipComments: boolean;
|
1010
|
-
}>
|
1011
|
-
| number,
|
1012
|
-
]
|
1013
|
-
>;
|
1014
|
-
|
1015
|
-
/**
|
1016
|
-
* Rule to enforce a maximum number of lines of code in a function.
|
1017
|
-
*
|
1018
|
-
* @since 5.0.0
|
1019
|
-
* @see https://eslint.org/docs/latest/rules/max-lines-per-function
|
1020
|
-
*/
|
1021
|
-
"max-lines-per-function": Linter.RuleEntry<
|
1022
|
-
[
|
1023
|
-
Partial<{
|
1024
|
-
/**
|
1025
|
-
* @default 50
|
1026
|
-
*/
|
1027
|
-
max: number;
|
1028
|
-
/**
|
1029
|
-
* @default false
|
1030
|
-
*/
|
1031
|
-
skipBlankLines: boolean;
|
1032
|
-
/**
|
1033
|
-
* @default false
|
1034
|
-
*/
|
1035
|
-
skipComments: boolean;
|
1036
|
-
/**
|
1037
|
-
* @default false
|
1038
|
-
*/
|
1039
|
-
IIFEs: boolean;
|
1040
|
-
}>,
|
1041
|
-
]
|
1042
|
-
>;
|
1043
|
-
|
1044
|
-
/**
|
1045
|
-
* Rule to enforce a maximum depth that callbacks can be nested.
|
1046
|
-
*
|
1047
|
-
* @since 0.2.0
|
1048
|
-
* @see https://eslint.org/docs/latest/rules/max-nested-callbacks
|
1049
|
-
*/
|
1050
|
-
"max-nested-callbacks": Linter.RuleEntry<
|
1051
|
-
[
|
1052
|
-
| Partial<{
|
1053
|
-
/**
|
1054
|
-
* @default 10
|
1055
|
-
*/
|
1056
|
-
max: number;
|
1057
|
-
}>
|
1058
|
-
| number,
|
1059
|
-
]
|
1060
|
-
>;
|
1061
|
-
|
1062
|
-
/**
|
1063
|
-
* Rule to enforce a maximum number of parameters in function definitions.
|
1064
|
-
*
|
1065
|
-
* @since 0.0.9
|
1066
|
-
* @see https://eslint.org/docs/latest/rules/max-params
|
1067
|
-
*/
|
1068
|
-
"max-params": Linter.RuleEntry<
|
1069
|
-
[
|
1070
|
-
| Partial<{
|
1071
|
-
/**
|
1072
|
-
* @default 3
|
1073
|
-
*/
|
1074
|
-
max: number;
|
1075
|
-
}>
|
1076
|
-
| number,
|
1077
|
-
]
|
1078
|
-
>;
|
1079
|
-
|
1080
|
-
/**
|
1081
|
-
* Rule to enforce a maximum number of statements allowed in function blocks.
|
1082
|
-
*
|
1083
|
-
* @since 0.0.9
|
1084
|
-
* @see https://eslint.org/docs/latest/rules/max-statements
|
1085
|
-
*/
|
1086
|
-
"max-statements": Linter.RuleEntry<
|
1087
|
-
[
|
1088
|
-
| Partial<{
|
1089
|
-
/**
|
1090
|
-
* @default 10
|
1091
|
-
*/
|
1092
|
-
max: number;
|
1093
|
-
/**
|
1094
|
-
* @default false
|
1095
|
-
*/
|
1096
|
-
ignoreTopLevelFunctions: boolean;
|
1097
|
-
}>
|
1098
|
-
| number,
|
1099
|
-
]
|
1100
|
-
>;
|
1101
|
-
|
1102
|
-
/**
|
1103
|
-
* Rule to enforce a maximum number of statements allowed per line.
|
1104
|
-
*
|
1105
|
-
* @since 2.5.0
|
1106
|
-
* @deprecated since 8.53.0, please use the [corresponding rule](https://eslint.style/rules/js/max-statements-per-line) in `@stylistic/eslint-plugin-js`.
|
1107
|
-
* @see https://eslint.org/docs/latest/rules/max-statements-per-line
|
1108
|
-
*/
|
1109
|
-
"max-statements-per-line": Linter.RuleEntry<
|
1110
|
-
[
|
1111
|
-
| Partial<{
|
1112
|
-
/**
|
1113
|
-
* @default 1
|
1114
|
-
*/
|
1115
|
-
max: number;
|
1116
|
-
}>
|
1117
|
-
| number,
|
1118
|
-
]
|
1119
|
-
>;
|
1120
|
-
|
1121
|
-
/**
|
1122
|
-
* Rule to enforce a particular style for multiline comments.
|
1123
|
-
*
|
1124
|
-
* @since 4.10.0
|
1125
|
-
* @deprecated since 9.3.0, please use the [corresponding rule](https://eslint.style/rules/js/multiline-comment-style) in `@stylistic/eslint-plugin-js`.
|
1126
|
-
* @see https://eslint.org/docs/latest/rules/multiline-comment-style
|
1127
|
-
*/
|
1128
|
-
"multiline-comment-style": Linter.RuleEntry<["starred-block" | "bare-block" | "separate-lines"]>;
|
1129
|
-
|
1130
|
-
/**
|
1131
|
-
* Rule to enforce newlines between operands of ternary expressions.
|
1132
|
-
*
|
1133
|
-
* @since 3.1.0
|
1134
|
-
* @deprecated since 8.53.0, please use the [corresponding rule](https://eslint.style/rules/js/multiline-ternary) in `@stylistic/eslint-plugin-js`.
|
1135
|
-
* @see https://eslint.org/docs/latest/rules/multiline-ternary
|
1136
|
-
*/
|
1137
|
-
"multiline-ternary": Linter.RuleEntry<["always" | "always-multiline" | "never"]>;
|
1138
|
-
|
1139
|
-
/**
|
1140
|
-
* Rule to require constructor names to begin with a capital letter.
|
1141
|
-
*
|
1142
|
-
* @since 0.0.3-0
|
1143
|
-
* @see https://eslint.org/docs/latest/rules/new-cap
|
1144
|
-
*/
|
1145
|
-
"new-cap": Linter.RuleEntry<
|
1146
|
-
[
|
1147
|
-
Partial<{
|
1148
|
-
/**
|
1149
|
-
* @default true
|
1150
|
-
*/
|
1151
|
-
newIsCap: boolean;
|
1152
|
-
/**
|
1153
|
-
* @default true
|
1154
|
-
*/
|
1155
|
-
capIsNew: boolean;
|
1156
|
-
newIsCapExceptions: string[];
|
1157
|
-
newIsCapExceptionPattern: string;
|
1158
|
-
capIsNewExceptions: string[];
|
1159
|
-
capIsNewExceptionPattern: string;
|
1160
|
-
/**
|
1161
|
-
* @default true
|
1162
|
-
*/
|
1163
|
-
properties: boolean;
|
1164
|
-
}>,
|
1165
|
-
]
|
1166
|
-
>;
|
1167
|
-
|
1168
|
-
/**
|
1169
|
-
* Rule to enforce or disallow parentheses when invoking a constructor with no arguments.
|
1170
|
-
*
|
1171
|
-
* @since 0.0.6
|
1172
|
-
* @deprecated since 8.53.0, please use the [corresponding rule](https://eslint.style/rules/js/new-parens) in `@stylistic/eslint-plugin-js`.
|
1173
|
-
* @see https://eslint.org/docs/latest/rules/new-parens
|
1174
|
-
*/
|
1175
|
-
"new-parens": Linter.RuleEntry<["always" | "never"]>;
|
1176
|
-
|
1177
|
-
/**
|
1178
|
-
* Rule to require a newline after each call in a method chain.
|
1179
|
-
*
|
1180
|
-
* @since 2.0.0-rc.0
|
1181
|
-
* @deprecated since 8.53.0, please use the [corresponding rule](https://eslint.style/rules/js/newline-per-chained-call) in `@stylistic/eslint-plugin-js`.
|
1182
|
-
* @see https://eslint.org/docs/latest/rules/newline-per-chained-call
|
1183
|
-
*/
|
1184
|
-
"newline-per-chained-call": Linter.RuleEntry<
|
1185
|
-
[
|
1186
|
-
{
|
1187
|
-
/**
|
1188
|
-
* @default 2
|
1189
|
-
*/
|
1190
|
-
ignoreChainWithDepth: number;
|
1191
|
-
},
|
1192
|
-
]
|
1193
|
-
>;
|
1194
|
-
|
1195
|
-
/**
|
1196
|
-
* Rule to disallow `Array` constructors.
|
1197
|
-
*
|
1198
|
-
* @since 0.4.0
|
1199
|
-
* @see https://eslint.org/docs/latest/rules/no-array-constructor
|
1200
|
-
*/
|
1201
|
-
"no-array-constructor": Linter.RuleEntry<[]>;
|
1202
|
-
|
1203
|
-
/**
|
1204
|
-
* Rule to disallow bitwise operators.
|
1205
|
-
*
|
1206
|
-
* @since 0.0.2
|
1207
|
-
* @see https://eslint.org/docs/latest/rules/no-bitwise
|
1208
|
-
*/
|
1209
|
-
"no-bitwise": Linter.RuleEntry<
|
1210
|
-
[
|
1211
|
-
Partial<{
|
1212
|
-
allow: string[];
|
1213
|
-
/**
|
1214
|
-
* @default false
|
1215
|
-
*/
|
1216
|
-
int32Hint: boolean;
|
1217
|
-
}>,
|
1218
|
-
]
|
1219
|
-
>;
|
1220
|
-
|
1221
|
-
/**
|
1222
|
-
* Rule to disallow `continue` statements.
|
1223
|
-
*
|
1224
|
-
* @since 0.19.0
|
1225
|
-
* @see https://eslint.org/docs/latest/rules/no-continue
|
1226
|
-
*/
|
1227
|
-
"no-continue": Linter.RuleEntry<[]>;
|
1228
|
-
|
1229
|
-
/**
|
1230
|
-
* Rule to disallow inline comments after code.
|
1231
|
-
*
|
1232
|
-
* @since 0.10.0
|
1233
|
-
* @see https://eslint.org/docs/latest/rules/no-inline-comments
|
1234
|
-
*/
|
1235
|
-
"no-inline-comments": Linter.RuleEntry<[]>;
|
1236
|
-
|
1237
|
-
/**
|
1238
|
-
* Rule to disallow `if` statements as the only statement in `else` blocks.
|
1239
|
-
*
|
1240
|
-
* @since 0.6.0
|
1241
|
-
* @see https://eslint.org/docs/latest/rules/no-lonely-if
|
1242
|
-
*/
|
1243
|
-
"no-lonely-if": Linter.RuleEntry<[]>;
|
1244
|
-
|
1245
|
-
/**
|
1246
|
-
* Rule to disallow mixed binary operators.
|
1247
|
-
*
|
1248
|
-
* @since 2.12.0
|
1249
|
-
* @deprecated since 8.53.0, please use the [corresponding rule](https://eslint.style/rules/js/no-mixed-operators) in `@stylistic/eslint-plugin-js`.
|
1250
|
-
* @see https://eslint.org/docs/latest/rules/no-mixed-operators
|
1251
|
-
*/
|
1252
|
-
"no-mixed-operators": Linter.RuleEntry<
|
1253
|
-
[
|
1254
|
-
Partial<{
|
1255
|
-
/**
|
1256
|
-
* @default
|
1257
|
-
* [
|
1258
|
-
* ["+", "-", "*", "/", "%", "**"],
|
1259
|
-
* ["&", "|", "^", "~", "<<", ">>", ">>>"],
|
1260
|
-
* ["==", "!=", "===", "!==", ">", ">=", "<", "<="],
|
1261
|
-
* ["&&", "||"],
|
1262
|
-
* ["in", "instanceof"]
|
1263
|
-
* ]
|
1264
|
-
*/
|
1265
|
-
groups: string[][];
|
1266
|
-
/**
|
1267
|
-
* @default true
|
1268
|
-
*/
|
1269
|
-
allowSamePrecedence: boolean;
|
1270
|
-
}>,
|
1271
|
-
]
|
1272
|
-
>;
|
1273
|
-
|
1274
|
-
/**
|
1275
|
-
* Rule to disallow mixed spaces and tabs for indentation.
|
1276
|
-
*
|
1277
|
-
* @since 0.7.1
|
1278
|
-
* @deprecated since 8.53.0, please use the [corresponding rule](https://eslint.style/rules/js/no-mixed-spaces-and-tabs) in `@stylistic/eslint-plugin-js`.
|
1279
|
-
* @see https://eslint.org/docs/latest/rules/no-mixed-spaces-and-tabs
|
1280
|
-
*/
|
1281
|
-
"no-mixed-spaces-and-tabs": Linter.RuleEntry<["smart-tabs"]>;
|
1282
|
-
|
1283
|
-
/**
|
1284
|
-
* Rule to disallow use of chained assignment expressions.
|
1285
|
-
*
|
1286
|
-
* @since 3.14.0
|
1287
|
-
* @see https://eslint.org/docs/latest/rules/no-multi-assign
|
1288
|
-
*/
|
1289
|
-
"no-multi-assign": Linter.RuleEntry<[]>;
|
1290
|
-
|
1291
|
-
/**
|
1292
|
-
* Rule to disallow multiple empty lines.
|
1293
|
-
*
|
1294
|
-
* @since 0.9.0
|
1295
|
-
* @deprecated since 8.53.0, please use the [corresponding rule](https://eslint.style/rules/js/no-multiple-empty-lines) in `@stylistic/eslint-plugin-js`.
|
1296
|
-
* @see https://eslint.org/docs/latest/rules/no-multiple-empty-lines
|
1297
|
-
*/
|
1298
|
-
"no-multiple-empty-lines": Linter.RuleEntry<
|
1299
|
-
[
|
1300
|
-
| Partial<{
|
1301
|
-
/**
|
1302
|
-
* @default 2
|
1303
|
-
*/
|
1304
|
-
max: number;
|
1305
|
-
maxEOF: number;
|
1306
|
-
maxBOF: number;
|
1307
|
-
}>
|
1308
|
-
| number,
|
1309
|
-
]
|
1310
|
-
>;
|
1311
|
-
|
1312
|
-
/**
|
1313
|
-
* Rule to disallow negated conditions.
|
1314
|
-
*
|
1315
|
-
* @since 1.6.0
|
1316
|
-
* @see https://eslint.org/docs/latest/rules/no-negated-condition
|
1317
|
-
*/
|
1318
|
-
"no-negated-condition": Linter.RuleEntry<[]>;
|
1319
|
-
|
1320
|
-
/**
|
1321
|
-
* Rule to disallow nested ternary expressions.
|
1322
|
-
*
|
1323
|
-
* @since 0.2.0
|
1324
|
-
* @see https://eslint.org/docs/latest/rules/no-nested-ternary
|
1325
|
-
*/
|
1326
|
-
"no-nested-ternary": Linter.RuleEntry<[]>;
|
1327
|
-
|
1328
|
-
/**
|
1329
|
-
* Rule to disallow calls to the `Object` constructor without an argument.
|
1330
|
-
*
|
1331
|
-
* @since 8.50.0
|
1332
|
-
* @see https://eslint.org/docs/latest/rules/no-object-constructor
|
1333
|
-
*/
|
1334
|
-
"no-object-constructor": Linter.RuleEntry<[]>;
|
1335
|
-
|
1336
|
-
/**
|
1337
|
-
* Rule to disallow the unary operators `++` and `--`.
|
1338
|
-
*
|
1339
|
-
* @since 0.0.9
|
1340
|
-
* @see https://eslint.org/docs/latest/rules/no-plusplus
|
1341
|
-
*/
|
1342
|
-
"no-plusplus": Linter.RuleEntry<
|
1343
|
-
[
|
1344
|
-
Partial<{
|
1345
|
-
/**
|
1346
|
-
* @default false
|
1347
|
-
*/
|
1348
|
-
allowForLoopAfterthoughts: boolean;
|
1349
|
-
}>,
|
1350
|
-
]
|
1351
|
-
>;
|
1352
|
-
|
1353
|
-
/**
|
1354
|
-
* Rule to disallow specified syntax.
|
1355
|
-
*
|
1356
|
-
* @since 1.4.0
|
1357
|
-
* @see https://eslint.org/docs/latest/rules/no-restricted-syntax
|
1358
|
-
*/
|
1359
|
-
"no-restricted-syntax": Linter.RuleEntry<
|
1360
|
-
[
|
1361
|
-
...Array<
|
1362
|
-
| string
|
1363
|
-
| {
|
1364
|
-
selector: string;
|
1365
|
-
message?: string | undefined;
|
1366
|
-
}
|
1367
|
-
>,
|
1368
|
-
]
|
1369
|
-
>;
|
1370
|
-
|
1371
|
-
/**
|
1372
|
-
* Rule to disallow all tabs.
|
1373
|
-
*
|
1374
|
-
* @since 3.2.0
|
1375
|
-
* @deprecated since 8.53.0, please use the [corresponding rule](https://eslint.style/rules/js/no-tabs) in `@stylistic/eslint-plugin-js`.
|
1376
|
-
* @see https://eslint.org/docs/latest/rules/no-tabs
|
1377
|
-
*/
|
1378
|
-
"no-tabs": Linter.RuleEntry<
|
1379
|
-
[
|
1380
|
-
Partial<{
|
1381
|
-
/**
|
1382
|
-
* @default false
|
1383
|
-
*/
|
1384
|
-
allowIndentationTabs: boolean;
|
1385
|
-
}>,
|
1386
|
-
]
|
1387
|
-
>;
|
1388
|
-
|
1389
|
-
/**
|
1390
|
-
* Rule to disallow ternary operators.
|
1391
|
-
*
|
1392
|
-
* @since 0.0.9
|
1393
|
-
* @see https://eslint.org/docs/latest/rules/no-ternary
|
1394
|
-
*/
|
1395
|
-
"no-ternary": Linter.RuleEntry<[]>;
|
1396
|
-
|
1397
|
-
/**
|
1398
|
-
* Rule to disallow trailing whitespace at the end of lines.
|
1399
|
-
*
|
1400
|
-
* @since 0.7.1
|
1401
|
-
* @deprecated since 8.53.0, please use the [corresponding rule](https://eslint.style/rules/js/no-trailing-spaces) in `@stylistic/eslint-plugin-js`.
|
1402
|
-
* @see https://eslint.org/docs/latest/rules/no-trailing-spaces
|
1403
|
-
*/
|
1404
|
-
"no-trailing-spaces": Linter.RuleEntry<
|
1405
|
-
[
|
1406
|
-
Partial<{
|
1407
|
-
/**
|
1408
|
-
* @default false
|
1409
|
-
*/
|
1410
|
-
skipBlankLines: boolean;
|
1411
|
-
/**
|
1412
|
-
* @default false
|
1413
|
-
*/
|
1414
|
-
ignoreComments: boolean;
|
1415
|
-
}>,
|
1416
|
-
]
|
1417
|
-
>;
|
1418
|
-
|
1419
|
-
/**
|
1420
|
-
* Rule to disallow dangling underscores in identifiers.
|
1421
|
-
*
|
1422
|
-
* @since 0.0.9
|
1423
|
-
* @see https://eslint.org/docs/latest/rules/no-underscore-dangle
|
1424
|
-
*/
|
1425
|
-
"no-underscore-dangle": Linter.RuleEntry<
|
1426
|
-
[
|
1427
|
-
Partial<{
|
1428
|
-
allow: string[];
|
1429
|
-
/**
|
1430
|
-
* @default false
|
1431
|
-
*/
|
1432
|
-
allowAfterThis: boolean;
|
1433
|
-
/**
|
1434
|
-
* @default false
|
1435
|
-
*/
|
1436
|
-
allowAfterSuper: boolean;
|
1437
|
-
/**
|
1438
|
-
* @since 6.7.0
|
1439
|
-
* @default false
|
1440
|
-
*/
|
1441
|
-
allowAfterThisConstructor: boolean;
|
1442
|
-
/**
|
1443
|
-
* @default false
|
1444
|
-
*/
|
1445
|
-
enforceInMethodNames: boolean;
|
1446
|
-
/**
|
1447
|
-
* @since 8.15.0
|
1448
|
-
* @default false
|
1449
|
-
*/
|
1450
|
-
enforceInClassFields: boolean;
|
1451
|
-
/**
|
1452
|
-
* @since 8.31.0
|
1453
|
-
* @default true
|
1454
|
-
*/
|
1455
|
-
allowInArrayDestructuring: boolean;
|
1456
|
-
/**
|
1457
|
-
* @since 8.31.0
|
1458
|
-
* @default true
|
1459
|
-
*/
|
1460
|
-
allowInObjectDestructuring: boolean;
|
1461
|
-
/**
|
1462
|
-
* @since 7.7.0
|
1463
|
-
* @default true
|
1464
|
-
*/
|
1465
|
-
allowFunctionParams: boolean;
|
1466
|
-
}>,
|
1467
|
-
]
|
1468
|
-
>;
|
1469
|
-
|
1470
|
-
/**
|
1471
|
-
* Rule to disallow ternary operators when simpler alternatives exist.
|
1472
|
-
*
|
1473
|
-
* @since 0.21.0
|
1474
|
-
* @see https://eslint.org/docs/latest/rules/no-unneeded-ternary
|
1475
|
-
*/
|
1476
|
-
"no-unneeded-ternary": Linter.RuleEntry<
|
1477
|
-
[
|
1478
|
-
Partial<{
|
1479
|
-
/**
|
1480
|
-
* @default true
|
1481
|
-
*/
|
1482
|
-
defaultAssignment: boolean;
|
1483
|
-
}>,
|
1484
|
-
]
|
1485
|
-
>;
|
1486
|
-
|
1487
|
-
/**
|
1488
|
-
* Rule to disallow whitespace before properties.
|
1489
|
-
*
|
1490
|
-
* @since 2.0.0-beta.1
|
1491
|
-
* @deprecated since 8.53.0, please use the [corresponding rule](https://eslint.style/rules/js/no-whitespace-before-property) in `@stylistic/eslint-plugin-js`.
|
1492
|
-
* @see https://eslint.org/docs/latest/rules/no-whitespace-before-property
|
1493
|
-
*/
|
1494
|
-
"no-whitespace-before-property": Linter.RuleEntry<[]>;
|
1495
|
-
|
1496
|
-
/**
|
1497
|
-
* Rule to enforce the location of single-line statements.
|
1498
|
-
*
|
1499
|
-
* @since 3.17.0
|
1500
|
-
* @deprecated since 8.53.0, please use the [corresponding rule](https://eslint.style/rules/js/nonblock-statement-body-position) in `@stylistic/eslint-plugin-js`.
|
1501
|
-
* @see https://eslint.org/docs/latest/rules/nonblock-statement-body-position
|
1502
|
-
*/
|
1503
|
-
"nonblock-statement-body-position": Linter.RuleEntry<
|
1504
|
-
[
|
1505
|
-
"beside" | "below" | "any",
|
1506
|
-
Partial<{
|
1507
|
-
overrides: Record<string, "beside" | "below" | "any">;
|
1508
|
-
}>,
|
1509
|
-
]
|
1510
|
-
>;
|
1511
|
-
|
1512
|
-
/**
|
1513
|
-
* Rule to enforce consistent line breaks after opening and before closing braces.
|
1514
|
-
*
|
1515
|
-
* @since 2.12.0
|
1516
|
-
* @deprecated since 8.53.0, please use the [corresponding rule](https://eslint.style/rules/js/object-curly-newline) in `@stylistic/eslint-plugin-js`.
|
1517
|
-
* @see https://eslint.org/docs/latest/rules/object-curly-newline
|
1518
|
-
*/
|
1519
|
-
"object-curly-newline": Linter.RuleEntry<
|
1520
|
-
[
|
1521
|
-
| "always"
|
1522
|
-
| "never"
|
1523
|
-
| Partial<{
|
1524
|
-
/**
|
1525
|
-
* @default false
|
1526
|
-
*/
|
1527
|
-
multiline: boolean;
|
1528
|
-
minProperties: number;
|
1529
|
-
/**
|
1530
|
-
* @default true
|
1531
|
-
*/
|
1532
|
-
consistent: boolean;
|
1533
|
-
}>
|
1534
|
-
| Partial<
|
1535
|
-
Record<
|
1536
|
-
"ObjectExpression" | "ObjectPattern" | "ImportDeclaration" | "ExportDeclaration",
|
1537
|
-
| "always"
|
1538
|
-
| "never"
|
1539
|
-
| Partial<{
|
1540
|
-
/**
|
1541
|
-
* @default false
|
1542
|
-
*/
|
1543
|
-
multiline: boolean;
|
1544
|
-
minProperties: number;
|
1545
|
-
/**
|
1546
|
-
* @default true
|
1547
|
-
*/
|
1548
|
-
consistent: boolean;
|
1549
|
-
}>
|
1550
|
-
>
|
1551
|
-
>,
|
1552
|
-
]
|
1553
|
-
>;
|
1554
|
-
|
1555
|
-
/**
|
1556
|
-
* Rule to enforce consistent spacing inside braces.
|
1557
|
-
*
|
1558
|
-
* @since 0.22.0
|
1559
|
-
* @deprecated since 8.53.0, please use the [corresponding rule](https://eslint.style/rules/js/object-curly-spacing) in `@stylistic/eslint-plugin-js`.
|
1560
|
-
* @see https://eslint.org/docs/latest/rules/object-curly-spacing
|
1561
|
-
*/
|
1562
|
-
"object-curly-spacing":
|
1563
|
-
| Linter.RuleEntry<
|
1564
|
-
[
|
1565
|
-
"never",
|
1566
|
-
{
|
1567
|
-
/**
|
1568
|
-
* @default false
|
1569
|
-
*/
|
1570
|
-
arraysInObjects: boolean;
|
1571
|
-
/**
|
1572
|
-
* @default false
|
1573
|
-
*/
|
1574
|
-
objectsInObjects: boolean;
|
1575
|
-
},
|
1576
|
-
]
|
1577
|
-
>
|
1578
|
-
| Linter.RuleEntry<
|
1579
|
-
[
|
1580
|
-
"always",
|
1581
|
-
{
|
1582
|
-
/**
|
1583
|
-
* @default true
|
1584
|
-
*/
|
1585
|
-
arraysInObjects: boolean;
|
1586
|
-
/**
|
1587
|
-
* @default true
|
1588
|
-
*/
|
1589
|
-
objectsInObjects: boolean;
|
1590
|
-
},
|
1591
|
-
]
|
1592
|
-
>;
|
1593
|
-
|
1594
|
-
/**
|
1595
|
-
* Rule to enforce placing object properties on separate lines.
|
1596
|
-
*
|
1597
|
-
* @since 2.10.0
|
1598
|
-
* @deprecated since 8.53.0, please use the [corresponding rule](https://eslint.style/rules/js/object-property-newline) in `@stylistic/eslint-plugin-js`.
|
1599
|
-
* @see https://eslint.org/docs/latest/rules/object-property-newline
|
1600
|
-
*/
|
1601
|
-
"object-property-newline": Linter.RuleEntry<
|
1602
|
-
[
|
1603
|
-
Partial<{
|
1604
|
-
/**
|
1605
|
-
* @default false
|
1606
|
-
*/
|
1607
|
-
allowAllPropertiesOnSameLine: boolean;
|
1608
|
-
}>,
|
1609
|
-
]
|
1610
|
-
>;
|
1611
|
-
|
1612
|
-
/**
|
1613
|
-
* Rule to enforce variables to be declared either together or separately in functions.
|
1614
|
-
*
|
1615
|
-
* @since 0.0.9
|
1616
|
-
* @see https://eslint.org/docs/latest/rules/one-var
|
1617
|
-
*/
|
1618
|
-
"one-var": Linter.RuleEntry<
|
1619
|
-
[
|
1620
|
-
| "always"
|
1621
|
-
| "never"
|
1622
|
-
| "consecutive"
|
1623
|
-
| Partial<
|
1624
|
-
{
|
1625
|
-
/**
|
1626
|
-
* @default false
|
1627
|
-
*/
|
1628
|
-
separateRequires: boolean;
|
1629
|
-
} & Record<"var" | "let" | "const", "always" | "never" | "consecutive">
|
1630
|
-
>
|
1631
|
-
| Partial<Record<"initialized" | "uninitialized", "always" | "never" | "consecutive">>,
|
1632
|
-
]
|
1633
|
-
>;
|
1634
|
-
|
1635
|
-
/**
|
1636
|
-
* Rule to require or disallow newlines around variable declarations.
|
1637
|
-
*
|
1638
|
-
* @since 2.0.0-beta.3
|
1639
|
-
* @deprecated since 8.53.0, please use the [corresponding rule](https://eslint.style/rules/js/one-var-declaration-per-line) in `@stylistic/eslint-plugin-js`.
|
1640
|
-
* @see https://eslint.org/docs/latest/rules/one-var-declaration-per-line
|
1641
|
-
*/
|
1642
|
-
"one-var-declaration-per-line": Linter.RuleEntry<["initializations" | "always"]>;
|
1643
|
-
|
1644
|
-
/**
|
1645
|
-
* Rule to require or disallow assignment operator shorthand where possible.
|
1646
|
-
*
|
1647
|
-
* @since 0.10.0
|
1648
|
-
* @see https://eslint.org/docs/latest/rules/operator-assignment
|
1649
|
-
*/
|
1650
|
-
"operator-assignment": Linter.RuleEntry<["always" | "never"]>;
|
1651
|
-
|
1652
|
-
/**
|
1653
|
-
* Rule to enforce consistent linebreak style for operators.
|
1654
|
-
*
|
1655
|
-
* @since 0.19.0
|
1656
|
-
* @deprecated since 8.53.0, please use the [corresponding rule](https://eslint.style/rules/js/operator-linebreak) in `@stylistic/eslint-plugin-js`.
|
1657
|
-
* @see https://eslint.org/docs/latest/rules/operator-linebreak
|
1658
|
-
*/
|
1659
|
-
"operator-linebreak": Linter.RuleEntry<
|
1660
|
-
[
|
1661
|
-
"after" | "before" | "none",
|
1662
|
-
Partial<{
|
1663
|
-
overrides: Record<string, "after" | "before" | "none">;
|
1664
|
-
}>,
|
1665
|
-
]
|
1666
|
-
>;
|
1667
|
-
|
1668
|
-
/**
|
1669
|
-
* Rule to require or disallow padding within blocks.
|
1670
|
-
*
|
1671
|
-
* @since 0.9.0
|
1672
|
-
* @deprecated since 8.53.0, please use the [corresponding rule](https://eslint.style/rules/js/padded-blocks) in `@stylistic/eslint-plugin-js`.
|
1673
|
-
* @see https://eslint.org/docs/latest/rules/padded-blocks
|
1674
|
-
*/
|
1675
|
-
"padded-blocks": Linter.RuleEntry<
|
1676
|
-
[
|
1677
|
-
"always" | "never" | Partial<Record<"blocks" | "classes" | "switches", "always" | "never">>,
|
1678
|
-
{
|
1679
|
-
/**
|
1680
|
-
* @default false
|
1681
|
-
*/
|
1682
|
-
allowSingleLineBlocks: boolean;
|
1683
|
-
},
|
1684
|
-
]
|
1685
|
-
>;
|
1686
|
-
|
1687
|
-
/**
|
1688
|
-
* Rule to require or disallow padding lines between statements.
|
1689
|
-
*
|
1690
|
-
* @since 4.0.0-beta.0
|
1691
|
-
* @deprecated since 8.53.0, please use the [corresponding rule](https://eslint.style/rules/js/padding-line-between-statements) in `@stylistic/eslint-plugin-js`.
|
1692
|
-
* @see https://eslint.org/docs/latest/rules/padding-line-between-statements
|
1693
|
-
*/
|
1694
|
-
"padding-line-between-statements": Linter.RuleEntry<
|
1695
|
-
[
|
1696
|
-
...Array<
|
1697
|
-
{
|
1698
|
-
blankLine: "any" | "never" | "always";
|
1699
|
-
} & Record<"prev" | "next", string | string[]>
|
1700
|
-
>,
|
1701
|
-
]
|
1702
|
-
>;
|
1703
|
-
|
1704
|
-
/**
|
1705
|
-
* Rule to disallow using `Object.assign` with an object literal as the first argument and prefer the use of object spread instead.
|
1706
|
-
*
|
1707
|
-
* @since 5.0.0-alpha.3
|
1708
|
-
* @see https://eslint.org/docs/latest/rules/prefer-object-spread
|
1709
|
-
*/
|
1710
|
-
"prefer-object-spread": Linter.RuleEntry<[]>;
|
1711
|
-
|
1712
|
-
/**
|
1713
|
-
* Rule to require quotes around object literal property names.
|
1714
|
-
*
|
1715
|
-
* @since 0.0.6
|
1716
|
-
* @deprecated since 8.53.0, please use the [corresponding rule](https://eslint.style/rules/js/quote-props) in `@stylistic/eslint-plugin-js`.
|
1717
|
-
* @see https://eslint.org/docs/latest/rules/quote-props
|
1718
|
-
*/
|
1719
|
-
"quote-props":
|
1720
|
-
| Linter.RuleEntry<["always" | "consistent"]>
|
1721
|
-
| Linter.RuleEntry<
|
1722
|
-
[
|
1723
|
-
"as-needed",
|
1724
|
-
Partial<{
|
1725
|
-
/**
|
1726
|
-
* @default false
|
1727
|
-
*/
|
1728
|
-
keywords: boolean;
|
1729
|
-
/**
|
1730
|
-
* @default true
|
1731
|
-
*/
|
1732
|
-
unnecessary: boolean;
|
1733
|
-
/**
|
1734
|
-
* @default false
|
1735
|
-
*/
|
1736
|
-
numbers: boolean;
|
1737
|
-
}>,
|
1738
|
-
]
|
1739
|
-
>
|
1740
|
-
| Linter.RuleEntry<
|
1741
|
-
[
|
1742
|
-
"consistent-as-needed",
|
1743
|
-
Partial<{
|
1744
|
-
/**
|
1745
|
-
* @default false
|
1746
|
-
*/
|
1747
|
-
keywords: boolean;
|
1748
|
-
}>,
|
1749
|
-
]
|
1750
|
-
>;
|
1751
|
-
|
1752
|
-
/**
|
1753
|
-
* Rule to enforce the consistent use of either backticks, double, or single quotes.
|
1754
|
-
*
|
1755
|
-
* @since 0.0.7
|
1756
|
-
* @deprecated since 8.53.0, please use the [corresponding rule](https://eslint.style/rules/js/quotes) in `@stylistic/eslint-plugin-js`.
|
1757
|
-
* @see https://eslint.org/docs/latest/rules/quotes
|
1758
|
-
*/
|
1759
|
-
quotes: Linter.RuleEntry<
|
1760
|
-
[
|
1761
|
-
"double" | "single" | "backtick",
|
1762
|
-
Partial<{
|
1763
|
-
/**
|
1764
|
-
* @default false
|
1765
|
-
*/
|
1766
|
-
avoidEscape: boolean;
|
1767
|
-
/**
|
1768
|
-
* @default false
|
1769
|
-
*/
|
1770
|
-
allowTemplateLiterals: boolean;
|
1771
|
-
}>,
|
1772
|
-
]
|
1773
|
-
>;
|
1774
|
-
|
1775
|
-
/**
|
1776
|
-
* Rule to require or disallow semicolons instead of ASI.
|
1777
|
-
*
|
1778
|
-
* @since 0.0.6
|
1779
|
-
* @deprecated since 8.53.0, please use the [corresponding rule](https://eslint.style/rules/js/semi) in `@stylistic/eslint-plugin-js`.
|
1780
|
-
* @see https://eslint.org/docs/latest/rules/semi
|
1781
|
-
*/
|
1782
|
-
semi:
|
1783
|
-
| Linter.RuleEntry<
|
1784
|
-
[
|
1785
|
-
"always",
|
1786
|
-
Partial<{
|
1787
|
-
/**
|
1788
|
-
* @default false
|
1789
|
-
*/
|
1790
|
-
omitLastInOneLineBlock: boolean;
|
1791
|
-
}>,
|
1792
|
-
]
|
1793
|
-
>
|
1794
|
-
| Linter.RuleEntry<
|
1795
|
-
[
|
1796
|
-
"never",
|
1797
|
-
Partial<{
|
1798
|
-
/**
|
1799
|
-
* @default 'any'
|
1800
|
-
*/
|
1801
|
-
beforeStatementContinuationChars: "any" | "always" | "never";
|
1802
|
-
}>,
|
1803
|
-
]
|
1804
|
-
>;
|
1805
|
-
|
1806
|
-
/**
|
1807
|
-
* Rule to enforce consistent spacing before and after semicolons.
|
1808
|
-
*
|
1809
|
-
* @since 0.16.0
|
1810
|
-
* @deprecated since 8.53.0, please use the [corresponding rule](https://eslint.style/rules/js/semi-spacing) in `@stylistic/eslint-plugin-js`.
|
1811
|
-
* @see https://eslint.org/docs/latest/rules/semi-spacing
|
1812
|
-
*/
|
1813
|
-
"semi-spacing": Linter.RuleEntry<
|
1814
|
-
[
|
1815
|
-
Partial<{
|
1816
|
-
/**
|
1817
|
-
* @default false
|
1818
|
-
*/
|
1819
|
-
before: boolean;
|
1820
|
-
/**
|
1821
|
-
* @default true
|
1822
|
-
*/
|
1823
|
-
after: boolean;
|
1824
|
-
}>,
|
1825
|
-
]
|
1826
|
-
>;
|
1827
|
-
|
1828
|
-
/**
|
1829
|
-
* Rule to enforce location of semicolons.
|
1830
|
-
*
|
1831
|
-
* @since 4.0.0-beta.0
|
1832
|
-
* @deprecated since 8.53.0, please use the [corresponding rule](https://eslint.style/rules/js/semi-style) in `@stylistic/eslint-plugin-js`.
|
1833
|
-
* @see https://eslint.org/docs/latest/rules/semi-style
|
1834
|
-
*/
|
1835
|
-
"semi-style": Linter.RuleEntry<["last" | "first"]>;
|
1836
|
-
|
1837
|
-
/**
|
1838
|
-
* Rule to require object keys to be sorted.
|
1839
|
-
*
|
1840
|
-
* @since 3.3.0
|
1841
|
-
* @see https://eslint.org/docs/latest/rules/sort-keys
|
1842
|
-
*/
|
1843
|
-
"sort-keys": Linter.RuleEntry<
|
1844
|
-
[
|
1845
|
-
"asc" | "desc",
|
1846
|
-
Partial<{
|
1847
|
-
/**
|
1848
|
-
* @default true
|
1849
|
-
*/
|
1850
|
-
caseSensitive: boolean;
|
1851
|
-
/**
|
1852
|
-
* @default 2
|
1853
|
-
*/
|
1854
|
-
minKeys: number;
|
1855
|
-
/**
|
1856
|
-
* @default false
|
1857
|
-
*/
|
1858
|
-
natural: boolean;
|
1859
|
-
/**
|
1860
|
-
* @default false
|
1861
|
-
*/
|
1862
|
-
allowLineSeparatedGroups: boolean;
|
1863
|
-
/**
|
1864
|
-
* @default false
|
1865
|
-
*/
|
1866
|
-
ignoreComputedKeys: boolean;
|
1867
|
-
}>,
|
1868
|
-
]
|
1869
|
-
>;
|
1870
|
-
|
1871
|
-
/**
|
1872
|
-
* Rule to require variables within the same declaration block to be sorted.
|
1873
|
-
*
|
1874
|
-
* @since 0.2.0
|
1875
|
-
* @see https://eslint.org/docs/latest/rules/sort-vars
|
1876
|
-
*/
|
1877
|
-
"sort-vars": Linter.RuleEntry<
|
1878
|
-
[
|
1879
|
-
Partial<{
|
1880
|
-
/**
|
1881
|
-
* @default false
|
1882
|
-
*/
|
1883
|
-
ignoreCase: boolean;
|
1884
|
-
}>,
|
1885
|
-
]
|
1886
|
-
>;
|
1887
|
-
|
1888
|
-
/**
|
1889
|
-
* Rule to enforce consistent spacing before blocks.
|
1890
|
-
*
|
1891
|
-
* @since 0.9.0
|
1892
|
-
* @deprecated since 8.53.0, please use the [corresponding rule](https://eslint.style/rules/js/space-before-blocks) in `@stylistic/eslint-plugin-js`.
|
1893
|
-
* @see https://eslint.org/docs/latest/rules/space-before-blocks
|
1894
|
-
*/
|
1895
|
-
"space-before-blocks": Linter.RuleEntry<
|
1896
|
-
["always" | "never" | Partial<Record<"functions" | "keywords" | "classes", "always" | "never" | "off">>]
|
1897
|
-
>;
|
1898
|
-
|
1899
|
-
/**
|
1900
|
-
* Rule to enforce consistent spacing before `function` definition opening parenthesis.
|
1901
|
-
*
|
1902
|
-
* @since 0.18.0
|
1903
|
-
* @deprecated since 8.53.0, please use the [corresponding rule](https://eslint.style/rules/js/space-before-function-paren) in `@stylistic/eslint-plugin-js`.
|
1904
|
-
* @see https://eslint.org/docs/latest/rules/space-before-function-paren
|
1905
|
-
*/
|
1906
|
-
"space-before-function-paren": Linter.RuleEntry<
|
1907
|
-
["always" | "never" | Partial<Record<"anonymous" | "named" | "asyncArrow", "always" | "never" | "ignore">>]
|
1908
|
-
>;
|
1909
|
-
|
1910
|
-
/**
|
1911
|
-
* Rule to enforce consistent spacing inside parentheses.
|
1912
|
-
*
|
1913
|
-
* @since 0.8.0
|
1914
|
-
* @deprecated since 8.53.0, please use the [corresponding rule](https://eslint.style/rules/js/space-in-parens) in `@stylistic/eslint-plugin-js`.
|
1915
|
-
* @see https://eslint.org/docs/latest/rules/space-in-parens
|
1916
|
-
*/
|
1917
|
-
"space-in-parens": Linter.RuleEntry<
|
1918
|
-
[
|
1919
|
-
"never" | "always",
|
1920
|
-
Partial<{
|
1921
|
-
exceptions: string[];
|
1922
|
-
}>,
|
1923
|
-
]
|
1924
|
-
>;
|
1925
|
-
|
1926
|
-
/**
|
1927
|
-
* Rule to require spacing around infix operators.
|
1928
|
-
*
|
1929
|
-
* @since 0.2.0
|
1930
|
-
* @deprecated since 8.53.0, please use the [corresponding rule](https://eslint.style/rules/js/space-infix-ops) in `@stylistic/eslint-plugin-js`.
|
1931
|
-
* @see https://eslint.org/docs/latest/rules/space-infix-ops
|
1932
|
-
*/
|
1933
|
-
"space-infix-ops": Linter.RuleEntry<
|
1934
|
-
[
|
1935
|
-
Partial<{
|
1936
|
-
/**
|
1937
|
-
* @default false
|
1938
|
-
*/
|
1939
|
-
int32Hint: boolean;
|
1940
|
-
}>,
|
1941
|
-
]
|
1942
|
-
>;
|
1943
|
-
|
1944
|
-
/**
|
1945
|
-
* Rule to enforce consistent spacing before or after unary operators.
|
1946
|
-
*
|
1947
|
-
* @since 0.10.0
|
1948
|
-
* @deprecated since 8.53.0, please use the [corresponding rule](https://eslint.style/rules/js/space-unary-ops) in `@stylistic/eslint-plugin-js`.
|
1949
|
-
* @see https://eslint.org/docs/latest/rules/space-unary-ops
|
1950
|
-
*/
|
1951
|
-
"space-unary-ops": Linter.RuleEntry<
|
1952
|
-
[
|
1953
|
-
Partial<{
|
1954
|
-
/**
|
1955
|
-
* @default true
|
1956
|
-
*/
|
1957
|
-
words: boolean;
|
1958
|
-
/**
|
1959
|
-
* @default false
|
1960
|
-
*/
|
1961
|
-
nonwords: boolean;
|
1962
|
-
overrides: Record<string, boolean>;
|
1963
|
-
}>,
|
1964
|
-
]
|
1965
|
-
>;
|
1966
|
-
|
1967
|
-
/**
|
1968
|
-
* Rule to enforce consistent spacing after the `//` or `/*` in a comment.
|
1969
|
-
*
|
1970
|
-
* @since 0.23.0
|
1971
|
-
* @deprecated since 8.53.0, please use the [corresponding rule](https://eslint.style/rules/js/spaced-comment) in `@stylistic/eslint-plugin-js`.
|
1972
|
-
* @see https://eslint.org/docs/latest/rules/spaced-comment
|
1973
|
-
*/
|
1974
|
-
"spaced-comment": Linter.RuleEntry<
|
1975
|
-
[
|
1976
|
-
"always" | "never",
|
1977
|
-
{
|
1978
|
-
exceptions: string[];
|
1979
|
-
markers: string[];
|
1980
|
-
line: {
|
1981
|
-
exceptions: string[];
|
1982
|
-
markers: string[];
|
1983
|
-
};
|
1984
|
-
block: {
|
1985
|
-
exceptions: string[];
|
1986
|
-
markers: string[];
|
1987
|
-
/**
|
1988
|
-
* @default false
|
1989
|
-
*/
|
1990
|
-
balanced: boolean;
|
1991
|
-
};
|
1992
|
-
},
|
1993
|
-
]
|
1994
|
-
>;
|
1995
|
-
|
1996
|
-
/**
|
1997
|
-
* Rule to enforce spacing around colons of switch statements.
|
1998
|
-
*
|
1999
|
-
* @since 4.0.0-beta.0
|
2000
|
-
* @deprecated since 8.53.0, please use the [corresponding rule](https://eslint.style/rules/js/switch-colon-spacing) in `@stylistic/eslint-plugin-js`.
|
2001
|
-
* @see https://eslint.org/docs/latest/rules/switch-colon-spacing
|
2002
|
-
*/
|
2003
|
-
"switch-colon-spacing": Linter.RuleEntry<
|
2004
|
-
[
|
2005
|
-
Partial<{
|
2006
|
-
/**
|
2007
|
-
* @default false
|
2008
|
-
*/
|
2009
|
-
before: boolean;
|
2010
|
-
/**
|
2011
|
-
* @default true
|
2012
|
-
*/
|
2013
|
-
after: boolean;
|
2014
|
-
}>,
|
2015
|
-
]
|
2016
|
-
>;
|
2017
|
-
|
2018
|
-
/**
|
2019
|
-
* Rule to require or disallow spacing between template tags and their literals.
|
2020
|
-
*
|
2021
|
-
* @since 3.15.0
|
2022
|
-
* @deprecated since 8.53.0, please use the [corresponding rule](https://eslint.style/rules/js/template-tag-spacing) in `@stylistic/eslint-plugin-js`.
|
2023
|
-
* @see https://eslint.org/docs/latest/rules/template-tag-spacing
|
2024
|
-
*/
|
2025
|
-
"template-tag-spacing": Linter.RuleEntry<["never" | "always"]>;
|
2026
|
-
|
2027
|
-
/**
|
2028
|
-
* Rule to require or disallow Unicode byte order mark (BOM).
|
2029
|
-
*
|
2030
|
-
* @since 2.11.0
|
2031
|
-
* @see https://eslint.org/docs/latest/rules/unicode-bom
|
2032
|
-
*/
|
2033
|
-
"unicode-bom": Linter.RuleEntry<["never" | "always"]>;
|
2034
|
-
|
2035
|
-
/**
|
2036
|
-
* Rule to require parenthesis around regex literals.
|
2037
|
-
*
|
2038
|
-
* @since 0.1.0
|
2039
|
-
* @deprecated since 8.53.0, please use the [corresponding rule](https://eslint.style/rules/js/wrap-regex) in `@stylistic/eslint-plugin-js`.
|
2040
|
-
* @see https://eslint.org/docs/latest/rules/wrap-regex
|
2041
|
-
*/
|
2042
|
-
"wrap-regex": Linter.RuleEntry<[]>;
|
2043
|
-
}
|