eslint-config-complete 1.4.1 → 1.5.0

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.
@@ -41,8 +41,8 @@ const HELPFUL_WARNINGS = {
41
41
  "**/protractor.conf.*.js", // protractor config
42
42
  "**/karma.conf.js", // karma config
43
43
  "**/.eslintrc.{js,cjs,mjs,ts,cts,mts}", // eslint config // Modified for extra file extensions.
44
- "**/scripts/*.{js,cjs,mjs,ts,cts,mts}", // Files inside of a "scripts" directory.
45
- "**/tests/*.{js,cjs,mjs,ts,cts,mts}", // Files inside of a "tests" directory.
44
+ "**/scripts/**/*.{js,cjs,mjs,ts,cts,mts}", // Files inside of a "scripts" directory.
45
+ "**/tests/**/*.{js,cjs,mjs,ts,cts,mts}", // Files inside of a "tests" directory.
46
46
  "**/eslint.config.{js,cjs,mjs,ts,cts,mts}", // ESLint config
47
47
  "**/prettier.config.{js,cjs,mjs,ts,cts,mts}", // Prettier config
48
48
  "**/typedoc.config.{js,cjs,mjs,ts,cts,mts}", // TypeDoc config
@@ -241,8 +241,8 @@ export const baseImportX = tseslint.config({
241
241
  files: [
242
242
  ".remarkrc.js",
243
243
  ".remarkrc.mjs",
244
- "docusaurus.js",
245
- "docusaurus.ts",
244
+ "docusaurus.config.js",
245
+ "docusaurus.config.ts",
246
246
  "eslint.config.js",
247
247
  "eslint.config.mjs",
248
248
  "jest.config.js",
@@ -1 +1 @@
1
- {"version":3,"file":"base-typescript-eslint.d.ts","sourceRoot":"","sources":["../../src/base/base-typescript-eslint.js"],"names":[],"mappings":"AAEA;;;GAGG;AACH,uGA2hBE"}
1
+ {"version":3,"file":"base-typescript-eslint.d.ts","sourceRoot":"","sources":["../../src/base/base-typescript-eslint.js"],"names":[],"mappings":"AAEA;;;GAGG;AACH,uGA4hBE"}
@@ -194,6 +194,7 @@ export const baseTypeScriptESLint = tseslint.config({
194
194
  "@typescript-eslint/no-meaningless-void-operator": "warn",
195
195
  "@typescript-eslint/no-misused-new": "warn",
196
196
  "@typescript-eslint/no-misused-promises": "warn",
197
+ "@typescript-eslint/no-misused-spread": "warn",
197
198
  "@typescript-eslint/no-mixed-enums": "warn",
198
199
  "@typescript-eslint/no-namespace": "warn",
199
200
  "@typescript-eslint/no-non-null-asserted-nullish-coalescing": "warn",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "eslint-config-complete",
3
- "version": "1.4.1",
3
+ "version": "1.5.0",
4
4
  "description": "A sharable ESLint config for TypeScript projects.",
5
5
  "keywords": [
6
6
  "eslint",
@@ -35,26 +35,26 @@
35
35
  "lint": "tsx ./scripts/lint.ts"
36
36
  },
37
37
  "dependencies": {
38
- "@stylistic/eslint-plugin": "^2.11.0",
38
+ "@stylistic/eslint-plugin": "^3.1.0",
39
39
  "confusing-browser-globals": "^1.0.11",
40
40
  "eslint-import-resolver-typescript": "^3.7.0",
41
41
  "eslint-plugin-complete": "^1.0.8",
42
- "eslint-plugin-import-x": "^4.5.0",
43
- "eslint-plugin-jsdoc": "^50.6.0",
44
- "eslint-plugin-n": "^17.14.0",
42
+ "eslint-plugin-import-x": "^4.6.1",
43
+ "eslint-plugin-jsdoc": "^50.6.3",
44
+ "eslint-plugin-n": "^17.15.1",
45
45
  "eslint-plugin-unicorn": "^56.0.1",
46
- "typescript-eslint": "^8.17.0"
46
+ "typescript-eslint": "^8.24.0"
47
47
  },
48
48
  "devDependencies": {
49
- "@eslint/js": "^9.16.0",
49
+ "@eslint/js": "^9.20.0",
50
50
  "@types/confusing-browser-globals": "^1.0.3",
51
51
  "@types/eslint-config-prettier": "^6.11.3",
52
52
  "@types/eslint__js": "^8.42.3",
53
- "@types/node": "^22.10.1",
53
+ "@types/node": "^22.13.1",
54
54
  "complete-common": "^1.0.1",
55
55
  "complete-node": "^1.7.4",
56
- "eslint-config-prettier": "^9.1.0",
56
+ "eslint-config-prettier": "^10.0.1",
57
57
  "extract-comments": "^1.1.0",
58
- "typescript": "^5.7.2"
58
+ "typescript": "^5.7.3"
59
59
  }
60
60
  }