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,647 +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 NoRestrictedImportPathCommonOptions {
|
31
|
-
name: string;
|
32
|
-
message?: string;
|
33
|
-
}
|
34
|
-
|
35
|
-
export type EitherImportNamesOrAllowImportName =
|
36
|
-
| { importNames?: string[]; allowImportNames?: never }
|
37
|
-
| { allowImportNames?: string[]; importNames?: never }
|
38
|
-
|
39
|
-
export type ValidNoRestrictedImportPathOptions = NoRestrictedImportPathCommonOptions & EitherImportNamesOrAllowImportName;
|
40
|
-
|
41
|
-
export interface NoRestrictedImportPatternCommonOptions {
|
42
|
-
message?: string;
|
43
|
-
caseSensitive?: boolean;
|
44
|
-
}
|
45
|
-
|
46
|
-
// Base type for group or regex constraint, ensuring mutual exclusivity
|
47
|
-
export type EitherGroupOrRegEx =
|
48
|
-
| { group: string[]; regex?: never }
|
49
|
-
| { regex: string; group?: never };
|
50
|
-
|
51
|
-
// Base type for import name specifiers, ensuring mutual exclusivity
|
52
|
-
export type EitherNameSpecifiers =
|
53
|
-
| { importNames: string[]; allowImportNames?: never; importNamePattern?: never; allowImportNamePattern?: never }
|
54
|
-
| { importNamePattern: string; allowImportNames?: never; importNames?: never; allowImportNamePattern?: never }
|
55
|
-
| { allowImportNames: string[]; importNames?: never; importNamePattern?: never; allowImportNamePattern?: never }
|
56
|
-
| { allowImportNamePattern: string; importNames?: never; allowImportNames?: never; importNamePattern?: never }
|
57
|
-
|
58
|
-
// Adds oneOf and not constraints, ensuring group or regex are present and mutually exclusive sets for importNames, allowImportNames, etc., as per the schema.
|
59
|
-
export type ValidNoRestrictedImportPatternOptions = NoRestrictedImportPatternCommonOptions & EitherGroupOrRegEx & EitherNameSpecifiers;
|
60
|
-
|
61
|
-
export interface ECMAScript6 extends Linter.RulesRecord {
|
62
|
-
/**
|
63
|
-
* Rule to require braces around arrow function bodies.
|
64
|
-
*
|
65
|
-
* @since 1.8.0
|
66
|
-
* @see https://eslint.org/docs/latest/rules/arrow-body-style
|
67
|
-
*/
|
68
|
-
"arrow-body-style":
|
69
|
-
| Linter.RuleEntry<
|
70
|
-
[
|
71
|
-
"as-needed",
|
72
|
-
Partial<{
|
73
|
-
/**
|
74
|
-
* @default false
|
75
|
-
*/
|
76
|
-
requireReturnForObjectLiteral: boolean;
|
77
|
-
}>,
|
78
|
-
]
|
79
|
-
>
|
80
|
-
| Linter.RuleEntry<["always" | "never"]>;
|
81
|
-
|
82
|
-
/**
|
83
|
-
* Rule to require parentheses around arrow function arguments.
|
84
|
-
*
|
85
|
-
* @since 1.0.0-rc-1
|
86
|
-
* @deprecated since 8.53.0, please use the [corresponding rule](https://eslint.style/rules/js/arrow-parens) in `@stylistic/eslint-plugin-js`.
|
87
|
-
* @see https://eslint.org/docs/latest/rules/arrow-parens
|
88
|
-
*/
|
89
|
-
"arrow-parens":
|
90
|
-
| Linter.RuleEntry<["always"]>
|
91
|
-
| Linter.RuleEntry<
|
92
|
-
[
|
93
|
-
"as-needed",
|
94
|
-
Partial<{
|
95
|
-
/**
|
96
|
-
* @default false
|
97
|
-
*/
|
98
|
-
requireForBlockBody: boolean;
|
99
|
-
}>,
|
100
|
-
]
|
101
|
-
>;
|
102
|
-
|
103
|
-
/**
|
104
|
-
* Rule to enforce consistent spacing before and after the arrow in arrow functions.
|
105
|
-
*
|
106
|
-
* @since 1.0.0-rc-1
|
107
|
-
* @deprecated since 8.53.0, please use the [corresponding rule](https://eslint.style/rules/js/arrow-spacing) in `@stylistic/eslint-plugin-js`.
|
108
|
-
* @see https://eslint.org/docs/latest/rules/arrow-spacing
|
109
|
-
*/
|
110
|
-
"arrow-spacing": Linter.RuleEntry<[]>;
|
111
|
-
|
112
|
-
/**
|
113
|
-
* Rule to require `super()` calls in constructors.
|
114
|
-
*
|
115
|
-
* @remarks
|
116
|
-
* Recommended by ESLint, the rule was enabled in `eslint:recommended`.
|
117
|
-
*
|
118
|
-
* @since 0.24.0
|
119
|
-
* @see https://eslint.org/docs/latest/rules/constructor-super
|
120
|
-
*/
|
121
|
-
"constructor-super": Linter.RuleEntry<[]>;
|
122
|
-
|
123
|
-
/**
|
124
|
-
* Rule to enforce consistent spacing around `*` operators in generator functions.
|
125
|
-
*
|
126
|
-
* @since 0.17.0
|
127
|
-
* @deprecated since 8.53.0, please use the [corresponding rule](https://eslint.style/rules/js/generator-star-spacing) in `@stylistic/eslint-plugin-js`.
|
128
|
-
* @see https://eslint.org/docs/latest/rules/generator-star-spacing
|
129
|
-
*/
|
130
|
-
"generator-star-spacing": Linter.RuleEntry<
|
131
|
-
[
|
132
|
-
| Partial<{
|
133
|
-
before: boolean;
|
134
|
-
after: boolean;
|
135
|
-
named:
|
136
|
-
| Partial<{
|
137
|
-
before: boolean;
|
138
|
-
after: boolean;
|
139
|
-
}>
|
140
|
-
| "before"
|
141
|
-
| "after"
|
142
|
-
| "both"
|
143
|
-
| "neither";
|
144
|
-
anonymous:
|
145
|
-
| Partial<{
|
146
|
-
before: boolean;
|
147
|
-
after: boolean;
|
148
|
-
}>
|
149
|
-
| "before"
|
150
|
-
| "after"
|
151
|
-
| "both"
|
152
|
-
| "neither";
|
153
|
-
method:
|
154
|
-
| Partial<{
|
155
|
-
before: boolean;
|
156
|
-
after: boolean;
|
157
|
-
}>
|
158
|
-
| "before"
|
159
|
-
| "after"
|
160
|
-
| "both"
|
161
|
-
| "neither";
|
162
|
-
}>
|
163
|
-
| "before"
|
164
|
-
| "after"
|
165
|
-
| "both"
|
166
|
-
| "neither",
|
167
|
-
]
|
168
|
-
>;
|
169
|
-
|
170
|
-
/**
|
171
|
-
* Rule to require or disallow logical assignment operator shorthand.
|
172
|
-
*
|
173
|
-
* @since 8.24.0
|
174
|
-
* @see https://eslint.org/docs/latest/rules/logical-assignment-operators
|
175
|
-
*/
|
176
|
-
"logical-assignment-operators":
|
177
|
-
| Linter.RuleEntry<
|
178
|
-
[
|
179
|
-
"always",
|
180
|
-
Partial<{
|
181
|
-
/**
|
182
|
-
* @default false
|
183
|
-
*/
|
184
|
-
enforceForIfStatements: boolean;
|
185
|
-
}>,
|
186
|
-
]
|
187
|
-
>
|
188
|
-
| Linter.RuleEntry<["never"]>;
|
189
|
-
|
190
|
-
/**
|
191
|
-
* Rule to disallow reassigning class members.
|
192
|
-
*
|
193
|
-
* @remarks
|
194
|
-
* Recommended by ESLint, the rule was enabled in `eslint:recommended`.
|
195
|
-
*
|
196
|
-
* @since 1.0.0-rc-1
|
197
|
-
* @see https://eslint.org/docs/latest/rules/no-class-assign
|
198
|
-
*/
|
199
|
-
"no-class-assign": Linter.RuleEntry<[]>;
|
200
|
-
|
201
|
-
/**
|
202
|
-
* Rule to disallow arrow functions where they could be confused with comparisons.
|
203
|
-
*
|
204
|
-
* @since 2.0.0-alpha-2
|
205
|
-
* @deprecated since 8.53.0, please use the [corresponding rule](https://eslint.style/rules/js/no-confusing-arrow) in `@stylistic/eslint-plugin-js`.
|
206
|
-
* @see https://eslint.org/docs/latest/rules/no-confusing-arrow
|
207
|
-
*/
|
208
|
-
"no-confusing-arrow": Linter.RuleEntry<
|
209
|
-
[
|
210
|
-
Partial<{
|
211
|
-
/**
|
212
|
-
* @default true
|
213
|
-
*/
|
214
|
-
allowParens: boolean;
|
215
|
-
}>,
|
216
|
-
]
|
217
|
-
>;
|
218
|
-
|
219
|
-
/**
|
220
|
-
* Rule to disallow reassigning `const` variables.
|
221
|
-
*
|
222
|
-
* @remarks
|
223
|
-
* Recommended by ESLint, the rule was enabled in `eslint:recommended`.
|
224
|
-
*
|
225
|
-
* @since 1.0.0-rc-1
|
226
|
-
* @see https://eslint.org/docs/latest/rules/no-const-assign
|
227
|
-
*/
|
228
|
-
"no-const-assign": Linter.RuleEntry<[]>;
|
229
|
-
|
230
|
-
/**
|
231
|
-
* Rule to disallow duplicate class members.
|
232
|
-
*
|
233
|
-
* @remarks
|
234
|
-
* Recommended by ESLint, the rule was enabled in `eslint:recommended`.
|
235
|
-
*
|
236
|
-
* @since 1.2.0
|
237
|
-
* @see https://eslint.org/docs/latest/rules/no-dupe-class-members
|
238
|
-
*/
|
239
|
-
"no-dupe-class-members": Linter.RuleEntry<[]>;
|
240
|
-
|
241
|
-
/**
|
242
|
-
* Rule to disallow duplicate module imports.
|
243
|
-
*
|
244
|
-
* @since 2.5.0
|
245
|
-
* @see https://eslint.org/docs/latest/rules/no-duplicate-imports
|
246
|
-
*/
|
247
|
-
"no-duplicate-imports": Linter.RuleEntry<
|
248
|
-
[
|
249
|
-
Partial<{
|
250
|
-
/**
|
251
|
-
* @default false
|
252
|
-
*/
|
253
|
-
includeExports: boolean;
|
254
|
-
}>,
|
255
|
-
]
|
256
|
-
>;
|
257
|
-
|
258
|
-
/**
|
259
|
-
* Rule to disallow `new` operators with global non-constructor functions.
|
260
|
-
*
|
261
|
-
* @remarks
|
262
|
-
* Recommended by ESLint, the rule was enabled in `eslint:recommended`.
|
263
|
-
*
|
264
|
-
* @since 8.27.0
|
265
|
-
* @see https://eslint.org/docs/latest/rules/no-new-native-nonconstructor
|
266
|
-
*/
|
267
|
-
"no-new-native-nonconstructor": Linter.RuleEntry<[]>;
|
268
|
-
|
269
|
-
/**
|
270
|
-
* Rule to disallow specified names in exports.
|
271
|
-
*
|
272
|
-
* @since 7.0.0-alpha.0
|
273
|
-
* @see https://eslint.org/docs/latest/rules/no-restricted-exports
|
274
|
-
*/
|
275
|
-
"no-restricted-exports": Linter.RuleEntry<
|
276
|
-
[
|
277
|
-
Partial<{
|
278
|
-
/**
|
279
|
-
* @default []
|
280
|
-
*/
|
281
|
-
restrictedNamedExports: string[];
|
282
|
-
/**
|
283
|
-
* @since 9.3.0
|
284
|
-
*/
|
285
|
-
restrictedNamedExportsPattern: string;
|
286
|
-
/**
|
287
|
-
* @since 8.33.0
|
288
|
-
*/
|
289
|
-
restrictDefaultExports: Partial<{
|
290
|
-
/**
|
291
|
-
* @default false
|
292
|
-
*/
|
293
|
-
direct: boolean;
|
294
|
-
/**
|
295
|
-
* @default false
|
296
|
-
*/
|
297
|
-
named: boolean;
|
298
|
-
/**
|
299
|
-
* @default false
|
300
|
-
*/
|
301
|
-
defaultFrom: boolean;
|
302
|
-
/**
|
303
|
-
* @default false
|
304
|
-
*/
|
305
|
-
namedFrom: boolean;
|
306
|
-
/**
|
307
|
-
* @default false
|
308
|
-
*/
|
309
|
-
namespaceFrom: boolean;
|
310
|
-
}>;
|
311
|
-
}>,
|
312
|
-
]
|
313
|
-
>;
|
314
|
-
|
315
|
-
/**
|
316
|
-
* Rule to disallow specified modules when loaded by `import`.
|
317
|
-
*
|
318
|
-
* @since 2.0.0-alpha-1
|
319
|
-
* @see https://eslint.org/docs/latest/rules/no-restricted-imports
|
320
|
-
*/
|
321
|
-
"no-restricted-imports": Linter.RuleEntry<
|
322
|
-
[
|
323
|
-
...Array<
|
324
|
-
| string
|
325
|
-
| ValidNoRestrictedImportPathOptions
|
326
|
-
| Partial<{
|
327
|
-
paths: Array<string | ValidNoRestrictedImportPathOptions>;
|
328
|
-
patterns: Array<string | ValidNoRestrictedImportPatternOptions>;
|
329
|
-
}>
|
330
|
-
>
|
331
|
-
]
|
332
|
-
>;
|
333
|
-
|
334
|
-
/**
|
335
|
-
* Rule to disallow `this`/`super` before calling `super()` in constructors.
|
336
|
-
*
|
337
|
-
* @remarks
|
338
|
-
* Recommended by ESLint, the rule was enabled in `eslint:recommended`.
|
339
|
-
*
|
340
|
-
* @since 0.24.0
|
341
|
-
* @see https://eslint.org/docs/latest/rules/no-this-before-super
|
342
|
-
*/
|
343
|
-
"no-this-before-super": Linter.RuleEntry<[]>;
|
344
|
-
|
345
|
-
/**
|
346
|
-
* Rule to disallow unnecessary computed property keys in objects and classes.
|
347
|
-
*
|
348
|
-
* @since 2.9.0
|
349
|
-
* @see https://eslint.org/docs/latest/rules/no-useless-computed-key
|
350
|
-
*/
|
351
|
-
"no-useless-computed-key": Linter.RuleEntry<
|
352
|
-
[
|
353
|
-
Partial<{
|
354
|
-
/**
|
355
|
-
* @default true
|
356
|
-
*/
|
357
|
-
enforceForClassMembers: boolean;
|
358
|
-
}>,
|
359
|
-
]
|
360
|
-
>;
|
361
|
-
|
362
|
-
/**
|
363
|
-
* Rule to disallow unnecessary constructors.
|
364
|
-
*
|
365
|
-
* @since 2.0.0-beta.1
|
366
|
-
* @see https://eslint.org/docs/latest/rules/no-useless-constructor
|
367
|
-
*/
|
368
|
-
"no-useless-constructor": Linter.RuleEntry<[]>;
|
369
|
-
|
370
|
-
/**
|
371
|
-
* Rule to disallow renaming import, export, and destructured assignments to the same name.
|
372
|
-
*
|
373
|
-
* @since 2.11.0
|
374
|
-
* @see https://eslint.org/docs/latest/rules/no-useless-rename
|
375
|
-
*/
|
376
|
-
"no-useless-rename": Linter.RuleEntry<
|
377
|
-
[
|
378
|
-
Partial<{
|
379
|
-
/**
|
380
|
-
* @default false
|
381
|
-
*/
|
382
|
-
ignoreImport: boolean;
|
383
|
-
/**
|
384
|
-
* @default false
|
385
|
-
*/
|
386
|
-
ignoreExport: boolean;
|
387
|
-
/**
|
388
|
-
* @default false
|
389
|
-
*/
|
390
|
-
ignoreDestructuring: boolean;
|
391
|
-
}>,
|
392
|
-
]
|
393
|
-
>;
|
394
|
-
|
395
|
-
/**
|
396
|
-
* Rule to require `let` or `const` instead of `var`.
|
397
|
-
*
|
398
|
-
* @since 0.12.0
|
399
|
-
* @see https://eslint.org/docs/latest/rules/no-var
|
400
|
-
*/
|
401
|
-
"no-var": Linter.RuleEntry<[]>;
|
402
|
-
|
403
|
-
/**
|
404
|
-
* Rule to require or disallow method and property shorthand syntax for object literals.
|
405
|
-
*
|
406
|
-
* @since 0.20.0
|
407
|
-
* @see https://eslint.org/docs/latest/rules/object-shorthand
|
408
|
-
*/
|
409
|
-
"object-shorthand":
|
410
|
-
| Linter.RuleEntry<
|
411
|
-
[
|
412
|
-
"always" | "methods",
|
413
|
-
Partial<{
|
414
|
-
/**
|
415
|
-
* @default false
|
416
|
-
*/
|
417
|
-
avoidQuotes: boolean;
|
418
|
-
/**
|
419
|
-
* @default false
|
420
|
-
*/
|
421
|
-
ignoreConstructors: boolean;
|
422
|
-
/**
|
423
|
-
* @since 8.22.0
|
424
|
-
*/
|
425
|
-
methodsIgnorePattern: string;
|
426
|
-
/**
|
427
|
-
* @default false
|
428
|
-
*/
|
429
|
-
avoidExplicitReturnArrows: boolean;
|
430
|
-
}>,
|
431
|
-
]
|
432
|
-
>
|
433
|
-
| Linter.RuleEntry<
|
434
|
-
[
|
435
|
-
"properties",
|
436
|
-
Partial<{
|
437
|
-
/**
|
438
|
-
* @default false
|
439
|
-
*/
|
440
|
-
avoidQuotes: boolean;
|
441
|
-
}>,
|
442
|
-
]
|
443
|
-
>
|
444
|
-
| Linter.RuleEntry<["never" | "consistent" | "consistent-as-needed"]>;
|
445
|
-
|
446
|
-
/**
|
447
|
-
* Rule to require using arrow functions for callbacks.
|
448
|
-
*
|
449
|
-
* @since 1.2.0
|
450
|
-
* @see https://eslint.org/docs/latest/rules/prefer-arrow-callback
|
451
|
-
*/
|
452
|
-
"prefer-arrow-callback": Linter.RuleEntry<
|
453
|
-
[
|
454
|
-
Partial<{
|
455
|
-
/**
|
456
|
-
* @default false
|
457
|
-
*/
|
458
|
-
allowNamedFunctions: boolean;
|
459
|
-
/**
|
460
|
-
* @default true
|
461
|
-
*/
|
462
|
-
allowUnboundThis: boolean;
|
463
|
-
}>,
|
464
|
-
]
|
465
|
-
>;
|
466
|
-
|
467
|
-
/**
|
468
|
-
* Rule to require `const` declarations for variables that are never reassigned after declared.
|
469
|
-
*
|
470
|
-
* @since 0.23.0
|
471
|
-
* @see https://eslint.org/docs/latest/rules/prefer-const
|
472
|
-
*/
|
473
|
-
"prefer-const": Linter.RuleEntry<
|
474
|
-
[
|
475
|
-
Partial<{
|
476
|
-
/**
|
477
|
-
* @default 'any'
|
478
|
-
*/
|
479
|
-
destructuring: "any" | "all";
|
480
|
-
/**
|
481
|
-
* @default false
|
482
|
-
*/
|
483
|
-
ignoreReadBeforeAssign: boolean;
|
484
|
-
}>,
|
485
|
-
]
|
486
|
-
>;
|
487
|
-
|
488
|
-
/**
|
489
|
-
* Rule to require destructuring from arrays and/or objects.
|
490
|
-
*
|
491
|
-
* @since 3.13.0
|
492
|
-
* @see https://eslint.org/docs/latest/rules/prefer-destructuring
|
493
|
-
*/
|
494
|
-
"prefer-destructuring": Linter.RuleEntry<
|
495
|
-
[
|
496
|
-
Partial<
|
497
|
-
| {
|
498
|
-
VariableDeclarator: Partial<{
|
499
|
-
array: boolean;
|
500
|
-
object: boolean;
|
501
|
-
}>;
|
502
|
-
AssignmentExpression: Partial<{
|
503
|
-
array: boolean;
|
504
|
-
object: boolean;
|
505
|
-
}>;
|
506
|
-
}
|
507
|
-
| {
|
508
|
-
array: boolean;
|
509
|
-
object: boolean;
|
510
|
-
}
|
511
|
-
>,
|
512
|
-
Partial<{
|
513
|
-
enforceForRenamedProperties: boolean;
|
514
|
-
}>,
|
515
|
-
]
|
516
|
-
>;
|
517
|
-
|
518
|
-
/**
|
519
|
-
* Rule to disallow the use of `Math.pow` in favor of the `**` operator.
|
520
|
-
*
|
521
|
-
* @since 6.7.0
|
522
|
-
* @see https://eslint.org/docs/latest/rules/prefer-exponentiation-operator
|
523
|
-
*/
|
524
|
-
"prefer-exponentiation-operator": Linter.RuleEntry<[]>;
|
525
|
-
|
526
|
-
/**
|
527
|
-
* Rule to disallow `parseInt()` and `Number.parseInt()` in favor of binary, octal, and hexadecimal literals.
|
528
|
-
*
|
529
|
-
* @since 3.5.0
|
530
|
-
* @see https://eslint.org/docs/latest/rules/prefer-numeric-literals
|
531
|
-
*/
|
532
|
-
"prefer-numeric-literals": Linter.RuleEntry<[]>;
|
533
|
-
|
534
|
-
/**
|
535
|
-
* Rule to require rest parameters instead of `arguments`.
|
536
|
-
*
|
537
|
-
* @since 2.0.0-alpha-1
|
538
|
-
* @see https://eslint.org/docs/latest/rules/prefer-rest-params
|
539
|
-
*/
|
540
|
-
"prefer-rest-params": Linter.RuleEntry<[]>;
|
541
|
-
|
542
|
-
/**
|
543
|
-
* Rule to require spread operators instead of `.apply()`.
|
544
|
-
*
|
545
|
-
* @since 1.0.0-rc-1
|
546
|
-
* @see https://eslint.org/docs/latest/rules/prefer-spread
|
547
|
-
*/
|
548
|
-
"prefer-spread": Linter.RuleEntry<[]>;
|
549
|
-
|
550
|
-
/**
|
551
|
-
* Rule to require template literals instead of string concatenation.
|
552
|
-
*
|
553
|
-
* @since 1.2.0
|
554
|
-
* @see https://eslint.org/docs/latest/rules/prefer-template
|
555
|
-
*/
|
556
|
-
"prefer-template": Linter.RuleEntry<[]>;
|
557
|
-
|
558
|
-
/**
|
559
|
-
* Rule to require generator functions to contain `yield`.
|
560
|
-
*
|
561
|
-
* @remarks
|
562
|
-
* Recommended by ESLint, the rule was enabled in `eslint:recommended`.
|
563
|
-
*
|
564
|
-
* @since 1.0.0-rc-1
|
565
|
-
* @see https://eslint.org/docs/latest/rules/require-yield
|
566
|
-
*/
|
567
|
-
"require-yield": Linter.RuleEntry<[]>;
|
568
|
-
|
569
|
-
/**
|
570
|
-
* Rule to enforce spacing between rest and spread operators and their expressions.
|
571
|
-
*
|
572
|
-
* @since 2.12.0
|
573
|
-
* @deprecated since 8.53.0, please use the [corresponding rule](https://eslint.style/rules/js/rest-spread-spacing) in `@stylistic/eslint-plugin-js`.
|
574
|
-
* @see https://eslint.org/docs/latest/rules/rest-spread-spacing
|
575
|
-
*/
|
576
|
-
"rest-spread-spacing": Linter.RuleEntry<["never" | "always"]>;
|
577
|
-
|
578
|
-
/**
|
579
|
-
* Rule to enforce sorted `import` declarations within modules.
|
580
|
-
*
|
581
|
-
* @since 2.0.0-beta.1
|
582
|
-
* @see https://eslint.org/docs/latest/rules/sort-imports
|
583
|
-
*/
|
584
|
-
"sort-imports": Linter.RuleEntry<
|
585
|
-
[
|
586
|
-
Partial<{
|
587
|
-
/**
|
588
|
-
* @default false
|
589
|
-
*/
|
590
|
-
ignoreCase: boolean;
|
591
|
-
/**
|
592
|
-
* @default false
|
593
|
-
*/
|
594
|
-
ignoreDeclarationSort: boolean;
|
595
|
-
/**
|
596
|
-
* @default false
|
597
|
-
*/
|
598
|
-
ignoreMemberSort: boolean;
|
599
|
-
/**
|
600
|
-
* @default ['none', 'all', 'multiple', 'single']
|
601
|
-
*/
|
602
|
-
memberSyntaxSortOrder: Array<"none" | "all" | "multiple" | "single">;
|
603
|
-
/**
|
604
|
-
* @default false
|
605
|
-
*/
|
606
|
-
allowSeparatedGroups: boolean;
|
607
|
-
}>,
|
608
|
-
]
|
609
|
-
>;
|
610
|
-
|
611
|
-
/**
|
612
|
-
* Rule to require symbol descriptions.
|
613
|
-
*
|
614
|
-
* @since 3.4.0
|
615
|
-
* @see https://eslint.org/docs/latest/rules/symbol-description
|
616
|
-
*/
|
617
|
-
"symbol-description": Linter.RuleEntry<[]>;
|
618
|
-
|
619
|
-
/**
|
620
|
-
* Rule to require or disallow spacing around embedded expressions of template strings.
|
621
|
-
*
|
622
|
-
* @since 2.0.0-rc.0
|
623
|
-
* @deprecated since 8.53.0, please use the [corresponding rule](https://eslint.style/rules/js/template-curly-spacing) in `@stylistic/eslint-plugin-js`.
|
624
|
-
* @see https://eslint.org/docs/latest/rules/template-curly-spacing
|
625
|
-
*/
|
626
|
-
"template-curly-spacing": Linter.RuleEntry<["never" | "always"]>;
|
627
|
-
|
628
|
-
/**
|
629
|
-
* Rule to require or disallow spacing around the `*` in `yield*` expressions.
|
630
|
-
*
|
631
|
-
* @since 2.0.0-alpha-1
|
632
|
-
* @deprecated since 8.53.0, please use the [corresponding rule](https://eslint.style/rules/js/yield-star-spacing) in `@stylistic/eslint-plugin-js`.
|
633
|
-
* @see https://eslint.org/docs/latest/rules/yield-star-spacing
|
634
|
-
*/
|
635
|
-
"yield-star-spacing": Linter.RuleEntry<
|
636
|
-
[
|
637
|
-
| Partial<{
|
638
|
-
before: boolean;
|
639
|
-
after: boolean;
|
640
|
-
}>
|
641
|
-
| "before"
|
642
|
-
| "after"
|
643
|
-
| "both"
|
644
|
-
| "neither",
|
645
|
-
]
|
646
|
-
>;
|
647
|
-
}
|
@@ -1,50 +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
|
-
|
29
|
-
import { Linter } from "../index";
|
30
|
-
|
31
|
-
import { BestPractices } from "./best-practices";
|
32
|
-
import { Deprecated } from "./deprecated";
|
33
|
-
import { ECMAScript6 } from "./ecmascript-6";
|
34
|
-
import { NodeJSAndCommonJS } from "./node-commonjs";
|
35
|
-
import { PossibleErrors } from "./possible-errors";
|
36
|
-
import { StrictMode } from "./strict-mode";
|
37
|
-
import { StylisticIssues } from "./stylistic-issues";
|
38
|
-
import { Variables } from "./variables";
|
39
|
-
|
40
|
-
export interface ESLintRules
|
41
|
-
extends
|
42
|
-
Linter.RulesRecord,
|
43
|
-
PossibleErrors,
|
44
|
-
BestPractices,
|
45
|
-
StrictMode,
|
46
|
-
Variables,
|
47
|
-
NodeJSAndCommonJS,
|
48
|
-
StylisticIssues,
|
49
|
-
ECMAScript6,
|
50
|
-
Deprecated { }
|