eslint-config-complete 4.1.0 → 4.1.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":"AA+NA;;;;;;;;;GASG;AACH,2DAuFE"}
1
+ {"version":3,"file":"base-import-x.d.ts","sourceRoot":"","sources":["../../src/base/base-import-x.js"],"names":[],"mappings":"AA8NA;;;;;;;;;GASG;AACH,2DAuFE"}
@@ -19,8 +19,6 @@ const HELPFUL_WARNINGS = {
19
19
  devDependencies: [
20
20
  // From:
21
21
  // https://github.com/airbnb/javascript/blob/master/packages/eslint-config-airbnb-base/rules/imports.js
22
- "test/**", // tape, common npm pattern
23
- "tests/**", // also common npm pattern
24
22
  "spec/**", // mocha, rspec-like pattern
25
23
  "**/__tests__/**", // jest pattern
26
24
  "**/__mocks__/**", // jest pattern
@@ -33,8 +31,9 @@ const HELPFUL_WARNINGS = {
33
31
  "**/protractor.conf.js", // protractor config
34
32
  "**/protractor.conf.*.js", // protractor config
35
33
  "**/karma.conf.js", // karma config
36
- "**/scripts/**/*.{js,cjs,mjs,ts,cts,mts}", // Files inside of a "scripts" directory.
37
- "**/tests/**/*.{js,cjs,mjs,ts,cts,mts}", // Files inside of a "tests" directory.
34
+ "**/scripts/**", // Files inside of a "scripts" directory.
35
+ "**/test/**", // Files inside of a "test" directory.
36
+ "**/tests/**", // Files inside of a "tests" directory.
38
37
  "**/*.config.{js,cjs,mjs,ts,cts,mts}", // Config files like "eslint.config.mjs"
39
38
  "**/*.config.*.{js,cjs,mjs,ts,cts,mts}", // Config files like "eslint.config.json.mjs"
40
39
  ],
@@ -1 +1 @@
1
- {"version":3,"file":"base.d.ts","sourceRoot":"","sources":["../src/base.js"],"names":[],"mappings":"AAUA;;;;;GAKG;AACH,kEAkBE"}
1
+ {"version":3,"file":"base.d.ts","sourceRoot":"","sources":["../src/base.js"],"names":[],"mappings":"AAUA;;;;;GAKG;AACH,kEAsBE"}
package/dist/base.js CHANGED
@@ -13,7 +13,11 @@ import { baseUnicorn } from "./base/base-unicorn.js";
13
13
  * Rule modifications are split out into different files for better organization (based on the
14
14
  * originating plugin) .
15
15
  */
16
- export const completeConfigBase = defineConfig(...baseESLint, ...baseTypeScriptESLint, ...baseStylistic, ...baseImportX, ...baseJSDoc, ...baseN, // "n" stands for Node.
16
+ export const completeConfigBase = defineConfig(
17
+ // By default, ESLint will include ".js", ".cjs", and ".mjs" file extensions:
18
+ // https://eslint.org/docs/latest/use/configure/configuration-files#specifying-files-and-ignores
19
+ // TypeScript file extensions are enabled in the "base-typescript-eslint.js" file.
20
+ ...baseESLint, ...baseTypeScriptESLint, ...baseStylistic, ...baseImportX, ...baseJSDoc, ...baseN, // "n" stands for Node.
17
21
  ...baseUnicorn, ...baseComplete, {
18
22
  // By default, ESLint ignores "**/node_modules/" and ".git/":
19
23
  // https://eslint.org/docs/latest/use/configure/ignore#ignoring-files
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "eslint-config-complete",
3
- "version": "4.1.0",
3
+ "version": "4.1.1",
4
4
  "description": "A sharable ESLint config for TypeScript projects.",
5
5
  "keywords": [
6
6
  "eslint",
@@ -42,15 +42,15 @@
42
42
  "eslint-plugin-n": "17.23.1",
43
43
  "eslint-plugin-unicorn": "62.0.0",
44
44
  "jsonc-eslint-parser": "2.4.1",
45
- "typescript-eslint": "8.47.0"
45
+ "typescript-eslint": "8.48.0"
46
46
  },
47
47
  "devDependencies": {
48
48
  "@eslint/js": "9.39.1",
49
49
  "@types/confusing-browser-globals": "1.0.3",
50
50
  "@types/eslint-config-prettier": "6.11.3",
51
51
  "@types/node": "24.10.1",
52
- "complete-common": "2.9.0",
53
- "complete-node": "12.2.1",
52
+ "complete-common": "2.10.0",
53
+ "complete-node": "12.4.2",
54
54
  "eslint-config-prettier": "10.1.8",
55
55
  "extract-comments": "1.1.0",
56
56
  "typescript": "5.9.3"