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