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.
Files changed (45) hide show
  1. checksums.yaml +4 -4
  2. data/lib/immosquare-cleaner/version.rb +1 -1
  3. data/lib/immosquare-cleaner.rb +2 -2
  4. data/linters/rubocop/cop/custom_cops/style/font_awesome_normalization.rb +104 -0
  5. data/linters/rubocop-3.4.1.yml +3 -1
  6. data/linters/rubocop.yml +4 -0
  7. data/node_modules/@eslint/config-helpers/LICENSE +201 -0
  8. data/node_modules/@eslint/config-helpers/README.md +97 -0
  9. data/node_modules/@eslint/config-helpers/dist/cjs/index.cjs +546 -0
  10. data/node_modules/@eslint/config-helpers/dist/cjs/index.d.cts +22 -0
  11. data/node_modules/@eslint/config-helpers/dist/cjs/types.cts +31 -0
  12. data/node_modules/@eslint/config-helpers/dist/esm/index.d.ts +22 -0
  13. data/node_modules/@eslint/config-helpers/dist/esm/index.js +544 -0
  14. data/node_modules/@eslint/config-helpers/dist/esm/types.d.ts +23 -0
  15. data/node_modules/@eslint/config-helpers/dist/esm/types.ts +31 -0
  16. data/node_modules/@eslint/config-helpers/package.json +60 -0
  17. data/node_modules/@eslint/js/package.json +1 -1
  18. data/node_modules/eslint/README.md +6 -4
  19. data/node_modules/eslint/lib/config-api.js +12 -0
  20. data/node_modules/eslint/lib/languages/js/source-code/source-code.js +18 -14
  21. data/node_modules/eslint/lib/rules/no-console.js +19 -11
  22. data/node_modules/eslint/lib/rules/no-native-reassign.js +1 -1
  23. data/node_modules/eslint/lib/rules/no-negated-in-lhs.js +1 -1
  24. data/node_modules/eslint/lib/types/config-api.d.ts +8 -0
  25. data/node_modules/eslint/lib/types/rules.d.ts +5199 -0
  26. data/node_modules/eslint/package.json +14 -6
  27. data/node_modules/eslint-scope/README.md +4 -3
  28. data/node_modules/eslint-scope/dist/eslint-scope.cjs +59 -2
  29. data/node_modules/eslint-scope/lib/index.js +1 -0
  30. data/node_modules/eslint-scope/lib/referencer.js +52 -0
  31. data/node_modules/eslint-scope/lib/scope-manager.js +4 -0
  32. data/node_modules/eslint-scope/lib/scope.js +1 -1
  33. data/node_modules/eslint-scope/lib/version.js +1 -1
  34. data/node_modules/eslint-scope/package.json +1 -1
  35. data/package.json +2 -2
  36. metadata +16 -11
  37. data/node_modules/eslint/lib/types/rules/best-practices.d.ts +0 -1143
  38. data/node_modules/eslint/lib/types/rules/deprecated.d.ts +0 -252
  39. data/node_modules/eslint/lib/types/rules/ecmascript-6.d.ts +0 -647
  40. data/node_modules/eslint/lib/types/rules/index.d.ts +0 -50
  41. data/node_modules/eslint/lib/types/rules/node-commonjs.d.ts +0 -171
  42. data/node_modules/eslint/lib/types/rules/possible-errors.d.ts +0 -685
  43. data/node_modules/eslint/lib/types/rules/strict-mode.d.ts +0 -38
  44. data/node_modules/eslint/lib/types/rules/stylistic-issues.d.ts +0 -2043
  45. data/node_modules/eslint/lib/types/rules/variables.d.ts +0 -234
@@ -0,0 +1,544 @@
1
+ // @ts-self-types="./index.d.ts"
2
+ /**
3
+ * @fileoverview defineConfig helper
4
+ * @author Nicholas C. Zakas
5
+ */
6
+
7
+ //-----------------------------------------------------------------------------
8
+ // Type Definitions
9
+ //-----------------------------------------------------------------------------
10
+
11
+ /** @typedef {import("eslint").Linter.Config} Config */
12
+ /** @typedef {import("eslint").Linter.LegacyConfig} LegacyConfig */
13
+ /** @typedef {import("eslint").ESLint.Plugin} Plugin */
14
+ /** @typedef {import("eslint").Linter.RuleEntry} RuleEntry */
15
+ /** @typedef {import("./types.ts").ExtendsElement} ExtendsElement */
16
+ /** @typedef {import("./types.ts").SimpleExtendsElement} SimpleExtendsElement */
17
+ /** @typedef {import("./types.ts").ConfigWithExtends} ConfigWithExtends */
18
+ /** @typedef {import("./types.ts").InfiniteArray<Config>} InfiniteConfigArray */
19
+ /** @typedef {import("./types.ts").ConfigWithExtendsArray} ConfigWithExtendsArray */
20
+
21
+ //-----------------------------------------------------------------------------
22
+ // Helpers
23
+ //-----------------------------------------------------------------------------
24
+
25
+ const eslintrcKeys = [
26
+ "env",
27
+ "extends",
28
+ "globals",
29
+ "ignorePatterns",
30
+ "noInlineConfig",
31
+ "overrides",
32
+ "parser",
33
+ "parserOptions",
34
+ "reportUnusedDisableDirectives",
35
+ "root",
36
+ ];
37
+
38
+ const allowedGlobalIgnoreKeys = new Set(["ignores", "name"]);
39
+
40
+ /**
41
+ * Gets the name of a config object.
42
+ * @param {Config} config The config object.
43
+ * @param {string} indexPath The index path of the config object.
44
+ * @return {string} The name of the config object.
45
+ */
46
+ function getConfigName(config, indexPath) {
47
+ if (config.name) {
48
+ return config.name;
49
+ }
50
+
51
+ return `UserConfig${indexPath}`;
52
+ }
53
+
54
+ /**
55
+ * Gets the name of an extension.
56
+ * @param {SimpleExtendsElement} extension The extension.
57
+ * @param {string} indexPath The index of the extension.
58
+ * @return {string} The name of the extension.
59
+ */
60
+ function getExtensionName(extension, indexPath) {
61
+ if (typeof extension === "string") {
62
+ return extension;
63
+ }
64
+
65
+ if (extension.name) {
66
+ return extension.name;
67
+ }
68
+
69
+ return `ExtendedConfig${indexPath}`;
70
+ }
71
+
72
+ /**
73
+ * Determines if a config object is a legacy config.
74
+ * @param {Config|LegacyConfig} config The config object to check.
75
+ * @return {config is LegacyConfig} `true` if the config object is a legacy config.
76
+ */
77
+ function isLegacyConfig(config) {
78
+ for (const key of eslintrcKeys) {
79
+ if (key in config) {
80
+ return true;
81
+ }
82
+ }
83
+
84
+ return false;
85
+ }
86
+
87
+ /**
88
+ * Determines if a config object is a global ignores config.
89
+ * @param {Config} config The config object to check.
90
+ * @return {boolean} `true` if the config object is a global ignores config.
91
+ */
92
+ function isGlobalIgnores(config) {
93
+ return Object.keys(config).every(key => allowedGlobalIgnoreKeys.has(key));
94
+ }
95
+
96
+ /**
97
+ * Parses a plugin member ID (rule, processor, etc.) and returns
98
+ * the namespace and member name.
99
+ * @param {string} id The ID to parse.
100
+ * @returns {{namespace:string, name:string}} The namespace and member name.
101
+ */
102
+ function getPluginMember(id) {
103
+ const firstSlashIndex = id.indexOf("/");
104
+
105
+ if (firstSlashIndex === -1) {
106
+ return { namespace: "", name: id };
107
+ }
108
+
109
+ let namespace = id.slice(0, firstSlashIndex);
110
+
111
+ /*
112
+ * Special cases:
113
+ * 1. The namespace is `@`, that means it's referring to the
114
+ * core plugin so `@` is the full namespace.
115
+ * 2. The namespace starts with `@`, that means it's referring to
116
+ * an npm scoped package. That means the namespace is the scope
117
+ * and the package name (i.e., `@eslint/core`).
118
+ */
119
+ if (namespace[0] === "@" && namespace !== "@") {
120
+ const secondSlashIndex = id.indexOf("/", firstSlashIndex + 1);
121
+ if (secondSlashIndex !== -1) {
122
+ namespace = id.slice(0, secondSlashIndex);
123
+ return { namespace, name: id.slice(secondSlashIndex + 1) };
124
+ }
125
+ }
126
+
127
+ const name = id.slice(firstSlashIndex + 1);
128
+
129
+ return { namespace, name };
130
+ }
131
+
132
+ /**
133
+ * Normalizes the plugin config by replacing the namespace with the plugin namespace.
134
+ * @param {string} userNamespace The namespace of the plugin.
135
+ * @param {Plugin} plugin The plugin config object.
136
+ * @param {Config} config The config object to normalize.
137
+ * @return {Config} The normalized config object.
138
+ */
139
+ function normalizePluginConfig(userNamespace, plugin, config) {
140
+ // @ts-ignore -- ESLint types aren't updated yet
141
+ const pluginNamespace = plugin.meta?.namespace;
142
+
143
+ // don't do anything if the plugin doesn't have a namespace or rules
144
+ if (
145
+ !pluginNamespace ||
146
+ pluginNamespace === userNamespace ||
147
+ (!config.rules && !config.processor && !config.language)
148
+ ) {
149
+ return config;
150
+ }
151
+
152
+ const result = { ...config };
153
+
154
+ // update the rules
155
+ if (result.rules) {
156
+ const ruleIds = Object.keys(result.rules);
157
+
158
+ /** @type {Record<string,RuleEntry|undefined>} */
159
+ const newRules = {};
160
+
161
+ for (let i = 0; i < ruleIds.length; i++) {
162
+ const ruleId = ruleIds[i];
163
+ const { namespace: ruleNamespace, name: ruleName } =
164
+ getPluginMember(ruleId);
165
+
166
+ if (ruleNamespace === pluginNamespace) {
167
+ newRules[`${userNamespace}/${ruleName}`] = result.rules[ruleId];
168
+ } else {
169
+ newRules[ruleId] = result.rules[ruleId];
170
+ }
171
+ }
172
+
173
+ result.rules = newRules;
174
+ }
175
+
176
+ // update the processor
177
+
178
+ if (typeof result.processor === "string") {
179
+ const { namespace: processorNamespace, name: processorName } =
180
+ getPluginMember(result.processor);
181
+
182
+ if (processorNamespace) {
183
+ if (processorNamespace === pluginNamespace) {
184
+ result.processor = `${userNamespace}/${processorName}`;
185
+ }
186
+ }
187
+ }
188
+
189
+ // update the language
190
+ if (typeof result.language === "string") {
191
+ const { namespace: languageNamespace, name: languageName } =
192
+ getPluginMember(result.language);
193
+
194
+ if (languageNamespace === pluginNamespace) {
195
+ result.language = `${userNamespace}/${languageName}`;
196
+ }
197
+ }
198
+
199
+ return result;
200
+ }
201
+
202
+ /**
203
+ * Deeply normalizes a plugin config, traversing recursively into an arrays.
204
+ * @param {string} userPluginNamespace The namespace of the plugin.
205
+ * @param {Plugin} plugin The plugin object.
206
+ * @param {Config|LegacyConfig|(Config|LegacyConfig)[]} pluginConfig The plugin config to normalize.
207
+ * @param {string} pluginConfigName The name of the plugin config.
208
+ * @return {InfiniteConfigArray} The normalized plugin config.
209
+ */
210
+ function deepNormalizePluginConfig(
211
+ userPluginNamespace,
212
+ plugin,
213
+ pluginConfig,
214
+ pluginConfigName,
215
+ ) {
216
+ // if it's an array then it's definitely a new config
217
+ if (Array.isArray(pluginConfig)) {
218
+ return pluginConfig.map(pluginSubConfig =>
219
+ deepNormalizePluginConfig(
220
+ userPluginNamespace,
221
+ plugin,
222
+ pluginSubConfig,
223
+ pluginConfigName,
224
+ ),
225
+ );
226
+ }
227
+
228
+ // if it's a legacy config, throw an error
229
+ if (isLegacyConfig(pluginConfig)) {
230
+ throw new TypeError(
231
+ `Plugin config "${pluginConfigName}" is an eslintrc config and cannot be used in this context.`,
232
+ );
233
+ }
234
+
235
+ return normalizePluginConfig(userPluginNamespace, plugin, pluginConfig);
236
+ }
237
+
238
+ /**
239
+ * Finds a plugin config by name in the given config.
240
+ * @param {Config} config The config object.
241
+ * @param {string} pluginConfigName The name of the plugin config.
242
+ * @return {InfiniteConfigArray} The plugin config.
243
+ */
244
+ function findPluginConfig(config, pluginConfigName) {
245
+ const { namespace: userPluginNamespace, name: configName } =
246
+ getPluginMember(pluginConfigName);
247
+ const plugin = config.plugins?.[userPluginNamespace];
248
+
249
+ if (!plugin) {
250
+ throw new TypeError(`Plugin "${userPluginNamespace}" not found.`);
251
+ }
252
+
253
+ const pluginConfig = plugin.configs?.[configName];
254
+
255
+ if (!pluginConfig) {
256
+ throw new TypeError(
257
+ `Plugin config "${configName}" not found in plugin "${userPluginNamespace}".`,
258
+ );
259
+ }
260
+
261
+ return deepNormalizePluginConfig(
262
+ userPluginNamespace,
263
+ plugin,
264
+ pluginConfig,
265
+ pluginConfigName,
266
+ );
267
+ }
268
+
269
+ /**
270
+ * Flattens an array while keeping track of the index path.
271
+ * @param {any[]} configList The array to traverse.
272
+ * @param {string} indexPath The index path of the value in a multidimensional array.
273
+ * @return {IterableIterator<{indexPath:string, value:any}>} The flattened list of values.
274
+ */
275
+ function* flatTraverse(configList, indexPath = "") {
276
+ for (let i = 0; i < configList.length; i++) {
277
+ const newIndexPath = indexPath ? `${indexPath}[${i}]` : `[${i}]`;
278
+
279
+ // if it's an array then traverse it as well
280
+ if (Array.isArray(configList[i])) {
281
+ yield* flatTraverse(configList[i], newIndexPath);
282
+ continue;
283
+ }
284
+
285
+ yield { indexPath: newIndexPath, value: configList[i] };
286
+ }
287
+ }
288
+
289
+ /**
290
+ * Extends a list of config files by creating every combination of base and extension files.
291
+ * @param {(string|string[])[]} [baseFiles] The base files.
292
+ * @param {(string|string[])[]} [extensionFiles] The extension files.
293
+ * @return {(string|string[])[]} The extended files.
294
+ */
295
+ function extendConfigFiles(baseFiles = [], extensionFiles = []) {
296
+ if (!extensionFiles.length) {
297
+ return baseFiles.concat();
298
+ }
299
+
300
+ if (!baseFiles.length) {
301
+ return extensionFiles.concat();
302
+ }
303
+
304
+ /** @type {(string|string[])[]} */
305
+ const result = [];
306
+
307
+ for (const baseFile of baseFiles) {
308
+ for (const extensionFile of extensionFiles) {
309
+ /*
310
+ * Each entry can be a string or array of strings. The end result
311
+ * needs to be an array of strings, so we need to be sure to include
312
+ * all of the items when there's an array.
313
+ */
314
+
315
+ const entry = [];
316
+
317
+ if (Array.isArray(baseFile)) {
318
+ entry.push(...baseFile);
319
+ } else {
320
+ entry.push(baseFile);
321
+ }
322
+
323
+ if (Array.isArray(extensionFile)) {
324
+ entry.push(...extensionFile);
325
+ } else {
326
+ entry.push(extensionFile);
327
+ }
328
+
329
+ result.push(entry);
330
+ }
331
+ }
332
+
333
+ return result;
334
+ }
335
+
336
+ /**
337
+ * Extends a config object with another config object.
338
+ * @param {Config} baseConfig The base config object.
339
+ * @param {string} baseConfigName The name of the base config object.
340
+ * @param {Config} extension The extension config object.
341
+ * @param {string} extensionName The index of the extension config object.
342
+ * @return {Config} The extended config object.
343
+ */
344
+ function extendConfig(baseConfig, baseConfigName, extension, extensionName) {
345
+ const result = { ...extension };
346
+
347
+ // for global ignores there is no further work to be done, we just keep everything
348
+ if (!isGlobalIgnores(extension)) {
349
+ // for files we need to create every combination of base and extension files
350
+ if (baseConfig.files) {
351
+ result.files = extendConfigFiles(baseConfig.files, extension.files);
352
+ }
353
+
354
+ // for ignores we just concatenation the extension ignores onto the base ignores
355
+ if (baseConfig.ignores) {
356
+ result.ignores = baseConfig.ignores.concat(extension.ignores ?? []);
357
+ }
358
+ }
359
+
360
+ result.name = `${baseConfigName} > ${extensionName}`;
361
+
362
+ return result;
363
+ }
364
+
365
+ /**
366
+ * Processes a list of extends elements.
367
+ * @param {ConfigWithExtends} config The config object.
368
+ * @param {WeakMap<Config, string>} configNames The map of config objects to their names.
369
+ * @return {Config[]} The flattened list of config objects.
370
+ */
371
+ function processExtends(config, configNames) {
372
+ if (!config.extends) {
373
+ return [config];
374
+ }
375
+
376
+ if (!Array.isArray(config.extends)) {
377
+ throw new TypeError("The `extends` property must be an array.");
378
+ }
379
+
380
+ const {
381
+ /** @type {Config[]} */
382
+ extends: extendsList,
383
+
384
+ /** @type {Config} */
385
+ ...configObject
386
+ } = config;
387
+
388
+ const extensionNames = new WeakMap();
389
+
390
+ // replace strings with the actual configs
391
+ const objectExtends = extendsList.map(extendsElement => {
392
+ if (typeof extendsElement === "string") {
393
+ const pluginConfig = findPluginConfig(config, extendsElement);
394
+
395
+ // assign names
396
+ if (Array.isArray(pluginConfig)) {
397
+ pluginConfig.forEach((pluginConfigElement, index) => {
398
+ extensionNames.set(
399
+ pluginConfigElement,
400
+ `${extendsElement}[${index}]`,
401
+ );
402
+ });
403
+ } else {
404
+ extensionNames.set(pluginConfig, extendsElement);
405
+ }
406
+
407
+ return pluginConfig;
408
+ }
409
+
410
+ return /** @type {Config} */ (extendsElement);
411
+ });
412
+
413
+ const result = [];
414
+
415
+ for (const { indexPath, value: extendsElement } of flatTraverse(
416
+ objectExtends,
417
+ )) {
418
+ const extension = /** @type {Config} */ (extendsElement);
419
+
420
+ if ("extends" in extension) {
421
+ throw new TypeError("Nested 'extends' is not allowed.");
422
+ }
423
+
424
+ const baseConfigName = /** @type {string} */ (configNames.get(config));
425
+ const extensionName =
426
+ extensionNames.get(extendsElement) ??
427
+ getExtensionName(extendsElement, indexPath);
428
+
429
+ result.push(
430
+ extendConfig(
431
+ configObject,
432
+ baseConfigName,
433
+ extension,
434
+ extensionName,
435
+ ),
436
+ );
437
+ }
438
+
439
+ /*
440
+ * If the base config object has only `ignores` and `extends`, then
441
+ * removing `extends` turns it into a global ignores, which is not what
442
+ * we want. So we need to check if the base config object is a global ignores
443
+ * and if so, we don't add it to the array.
444
+ *
445
+ * (The other option would be to add a `files` entry, but that would result
446
+ * in a config that didn't actually do anything because there are no
447
+ * other keys in the config.)
448
+ */
449
+ if (!isGlobalIgnores(configObject)) {
450
+ result.push(configObject);
451
+ }
452
+
453
+ return result.flat();
454
+ }
455
+
456
+ /**
457
+ * Processes a list of config objects and arrays.
458
+ * @param {ConfigWithExtends[]} configList The list of config objects and arrays.
459
+ * @param {WeakMap<Config, string>} configNames The map of config objects to their names.
460
+ * @return {Config[]} The flattened list of config objects.
461
+ */
462
+ function processConfigList(configList, configNames) {
463
+ return configList.flatMap(config => processExtends(config, configNames));
464
+ }
465
+
466
+ //-----------------------------------------------------------------------------
467
+ // Exports
468
+ //-----------------------------------------------------------------------------
469
+
470
+ /**
471
+ * Helper function to define a config array.
472
+ * @param {ConfigWithExtendsArray} args The arguments to the function.
473
+ * @returns {Config[]} The config array.
474
+ */
475
+ function defineConfig(...args) {
476
+ const configNames = new WeakMap();
477
+ const configs = [];
478
+
479
+ if (args.length === 0) {
480
+ throw new TypeError("Expected one or more arguments.");
481
+ }
482
+
483
+ // first flatten the list of configs and get the names
484
+ for (const { indexPath, value } of flatTraverse(args)) {
485
+ if (typeof value !== "object" || value === null) {
486
+ throw new TypeError(
487
+ `Expected an object but received ${String(value)}.`,
488
+ );
489
+ }
490
+
491
+ const config = /** @type {ConfigWithExtends} */ (value);
492
+
493
+ // save config name for easy reference later
494
+ configNames.set(config, getConfigName(config, indexPath));
495
+ configs.push(config);
496
+ }
497
+
498
+ return processConfigList(configs, configNames);
499
+ }
500
+
501
+ /**
502
+ * @fileoverview Global ignores helper function.
503
+ * @author Nicholas C. Zakas
504
+ */
505
+
506
+ //-----------------------------------------------------------------------------
507
+ // Type Definitions
508
+ //-----------------------------------------------------------------------------
509
+
510
+
511
+ //-----------------------------------------------------------------------------
512
+ // Helpers
513
+ //-----------------------------------------------------------------------------
514
+
515
+ let globalIgnoreCount = 0;
516
+
517
+ //-----------------------------------------------------------------------------
518
+ // Exports
519
+ //-----------------------------------------------------------------------------
520
+
521
+ /**
522
+ * Creates a global ignores config with the given patterns.
523
+ * @param {string[]} ignorePatterns The ignore patterns.
524
+ * @param {string} [name] The name of the global ignores config.
525
+ * @returns {Config} The global ignores config.
526
+ */
527
+ function globalIgnores(ignorePatterns, name) {
528
+ if (!Array.isArray(ignorePatterns)) {
529
+ throw new TypeError("ignorePatterns must be an array");
530
+ }
531
+
532
+ if (ignorePatterns.length === 0) {
533
+ throw new TypeError("ignorePatterns must contain at least one pattern");
534
+ }
535
+
536
+ const id = globalIgnoreCount++;
537
+
538
+ return {
539
+ name: name || `globalIgnores ${id}`,
540
+ ignores: ignorePatterns,
541
+ };
542
+ }
543
+
544
+ export { defineConfig, globalIgnores };
@@ -0,0 +1,23 @@
1
+ /**
2
+ * @fileoverview Types for this package.
3
+ */
4
+ import type { Linter } from "eslint";
5
+ /**
6
+ * Infinite array type.
7
+ */
8
+ export type InfiniteArray<T> = T | InfiniteArray<T>[];
9
+ /**
10
+ * The type of array element in the `extends` property after flattening.
11
+ */
12
+ export type SimpleExtendsElement = string | Linter.Config;
13
+ /**
14
+ * The type of array element in the `extends` property before flattening.
15
+ */
16
+ export type ExtendsElement = SimpleExtendsElement | InfiniteArray<Linter.Config>;
17
+ /**
18
+ * Config with extends. Valid only inside of `defineConfig()`.
19
+ */
20
+ export interface ConfigWithExtends extends Linter.Config {
21
+ extends?: ExtendsElement[];
22
+ }
23
+ export type ConfigWithExtendsArray = InfiniteArray<ConfigWithExtends>[];
@@ -0,0 +1,31 @@
1
+ /**
2
+ * @fileoverview Types for this package.
3
+ */
4
+
5
+ import type { Linter } from "eslint";
6
+
7
+ /**
8
+ * Infinite array type.
9
+ */
10
+ export type InfiniteArray<T> = T | InfiniteArray<T>[];
11
+
12
+ /**
13
+ * The type of array element in the `extends` property after flattening.
14
+ */
15
+ export type SimpleExtendsElement = string | Linter.Config;
16
+
17
+ /**
18
+ * The type of array element in the `extends` property before flattening.
19
+ */
20
+ export type ExtendsElement =
21
+ | SimpleExtendsElement
22
+ | InfiniteArray<Linter.Config>;
23
+
24
+ /**
25
+ * Config with extends. Valid only inside of `defineConfig()`.
26
+ */
27
+ export interface ConfigWithExtends extends Linter.Config {
28
+ extends?: ExtendsElement[];
29
+ }
30
+
31
+ export type ConfigWithExtendsArray = InfiniteArray<ConfigWithExtends>[];
@@ -0,0 +1,60 @@
1
+ {
2
+ "name": "@eslint/config-helpers",
3
+ "version": "0.1.0",
4
+ "description": "Helper utilities for creating ESLint configuration",
5
+ "type": "module",
6
+ "main": "dist/esm/index.js",
7
+ "types": "dist/esm/index.d.ts",
8
+ "exports": {
9
+ "require": {
10
+ "types": "./dist/cjs/index.d.cts",
11
+ "default": "./dist/cjs/index.cjs"
12
+ },
13
+ "import": {
14
+ "types": "./dist/esm/index.d.ts",
15
+ "default": "./dist/esm/index.js"
16
+ }
17
+ },
18
+ "files": [
19
+ "dist"
20
+ ],
21
+ "publishConfig": {
22
+ "access": "public"
23
+ },
24
+ "directories": {
25
+ "test": "tests"
26
+ },
27
+ "scripts": {
28
+ "build:dedupe-types": "node ../../tools/dedupe-types.js dist/cjs/index.cjs dist/esm/index.js",
29
+ "build:cts": "node ../../tools/build-cts.js dist/esm/index.d.ts dist/cjs/index.d.cts",
30
+ "build": "rollup -c && npm run build:dedupe-types && tsc -p tsconfig.esm.json && npm run build:cts",
31
+ "test:jsr": "npx jsr@latest publish --dry-run",
32
+ "test": "mocha tests/*.js",
33
+ "test:coverage": "c8 npm test",
34
+ "test:types": "tsc -p tests/types/tsconfig.json"
35
+ },
36
+ "repository": {
37
+ "type": "git",
38
+ "url": "git+https://github.com/eslint/rewrite.git"
39
+ },
40
+ "keywords": [
41
+ "eslint"
42
+ ],
43
+ "license": "Apache-2.0",
44
+ "bugs": {
45
+ "url": "https://github.com/eslint/rewrite/issues"
46
+ },
47
+ "homepage": "https://github.com/eslint/rewrite/tree/main/packages/config-helpers#readme",
48
+ "devDependencies": {
49
+ "@eslint/core": "^0.11.0",
50
+ "c8": "^9.1.0",
51
+ "eslint": "^9.19.0",
52
+ "mocha": "^10.4.0",
53
+ "rollup": "^4.16.2",
54
+ "rollup-plugin-copy": "^3.5.0",
55
+ "typescript": "^5.4.5"
56
+ },
57
+ "engines": {
58
+ "node": "^18.18.0 || ^20.9.0 || >=21.1.0"
59
+ }
60
+ }
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@eslint/js",
3
- "version": "9.21.0",
3
+ "version": "9.22.0",
4
4
  "description": "ESLint JavaScript language implementation",
5
5
  "main": "./src/index.js",
6
6
  "types": "./types/index.d.ts",