eslint-config-complete 3.2.0 → 3.2.1

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.
@@ -1 +1 @@
1
- {"version":3,"file":"base-import-x.d.ts","sourceRoot":"","sources":["../../src/base/base-import-x.js"],"names":[],"mappings":"AA6OA;;;;;;;;;GASG;AACH,gGAoHE"}
1
+ {"version":3,"file":"base-import-x.d.ts","sourceRoot":"","sources":["../../src/base/base-import-x.js"],"names":[],"mappings":"AA6OA;;;;;;;;;GASG;AACH,gGA6HE"}
@@ -289,6 +289,12 @@ export const baseImportX = defineConfig({
289
289
  "eslint.config.ts",
290
290
  "eslint.config.cts",
291
291
  "eslint.config.mts",
292
+ "eslint.config.*.js",
293
+ "eslint.config.*.cjs",
294
+ "eslint.config.*.mjs",
295
+ "eslint.config.*.ts",
296
+ "eslint.config.*.cts",
297
+ "eslint.config.*.mts",
292
298
  ],
293
299
  rules: {
294
300
  // TypeScript projects that use "complete-lint" have a false positive when importing
@@ -298,7 +304,10 @@ export const baseImportX = defineConfig({
298
304
  "import-x/no-extraneous-dependencies": [
299
305
  "warn",
300
306
  {
301
- devDependencies: ["**/eslint.config.{js,cjs,mjs,ts,cts,mts}"],
307
+ devDependencies: [
308
+ "**/eslint.config.{js,cjs,mjs,ts,cts,mts}",
309
+ "**/eslint.config.*.{js,cjs,mjs,ts,cts,mts}",
310
+ ],
302
311
  optionalDependencies: false,
303
312
  whitelist: ["eslint", "eslint-config-complete"],
304
313
  },
@@ -1 +1 @@
1
- {"version":3,"file":"base.d.ts","sourceRoot":"","sources":["../src/base.js"],"names":[],"mappings":"AAUA;;;;;GAKG;AACH,uGA0BE"}
1
+ {"version":3,"file":"base.d.ts","sourceRoot":"","sources":["../src/base.js"],"names":[],"mappings":"AAUA;;;;;GAKG;AACH,uGAkBE"}
package/dist/base.js CHANGED
@@ -14,14 +14,7 @@ import { baseUnicorn } from "./base/base-unicorn.js";
14
14
  * originating plugin) .
15
15
  */
16
16
  export const completeConfigBase = defineConfig(...baseESLint, ...baseTypeScriptESLint, ...baseStylistic, ...baseImportX, ...baseJSDoc, ...baseN, // "n" stands for Node.
17
- ...baseUnicorn, ...baseComplete,
18
- // We prefer the official `reportUnusedDisableDirectives` linter option over the 3rd-party plugin
19
- // of "eslint-plugin-eslint-comments".
20
- {
21
- linterOptions: {
22
- reportUnusedDisableDirectives: "warn",
23
- },
24
- }, {
17
+ ...baseUnicorn, ...baseComplete, {
25
18
  // By default, ESLint ignores "**/node_modules/" and ".git/":
26
19
  // https://eslint.org/docs/latest/use/configure/ignore#ignoring-files
27
20
  // We also want to ignore:
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "eslint-config-complete",
3
- "version": "3.2.0",
3
+ "version": "3.2.1",
4
4
  "description": "A sharable ESLint config for TypeScript projects.",
5
5
  "keywords": [
6
6
  "eslint",
@@ -38,7 +38,7 @@
38
38
  "eslint-plugin-complete": "1.1.3",
39
39
  "eslint-plugin-eslint-plugin": "7.0.0",
40
40
  "eslint-plugin-import-x": "4.16.1",
41
- "eslint-plugin-jsdoc": "61.1.0",
41
+ "eslint-plugin-jsdoc": "61.1.1",
42
42
  "eslint-plugin-n": "17.23.1",
43
43
  "eslint-plugin-unicorn": "61.0.2",
44
44
  "jsonc-eslint-parser": "2.4.1",