@aneuhold/eslint-config 1.0.27 → 1.0.29

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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aneuhold/eslint-config",
3
- "version": "1.0.27",
3
+ "version": "1.0.29",
4
4
  "description": "Main ESLint Configuration for personal projects",
5
5
  "main": "./src/ts-lib-config.js",
6
6
  "packageManager": "yarn@4.4.0",
@@ -28,22 +28,22 @@
28
28
  "src/**/*"
29
29
  ],
30
30
  "peerDependencies": {
31
- "eslint": ">= 9.9.0"
31
+ "eslint": ">= 9.10.0"
32
32
  },
33
33
  "dependencies": {
34
- "@eslint/js": "^9.9.0",
35
- "@typescript-eslint/eslint-plugin": "^8.0.0",
36
- "@typescript-eslint/parser": "^8.0.0",
34
+ "@eslint/js": "^9.10.0",
35
+ "@typescript-eslint/eslint-plugin": "^8.5.0",
36
+ "@typescript-eslint/parser": "^8.5.0",
37
37
  "eslint-config-prettier": "^9.1.0",
38
- "eslint-plugin-import": "^2.29.1",
38
+ "eslint-plugin-import": "^2.30.0",
39
39
  "eslint-plugin-prettier": "^5.2.1",
40
- "eslint-plugin-svelte": "^2.43.0",
40
+ "eslint-plugin-svelte": "^2.44.0",
41
41
  "prettier-plugin-svelte": "^3.2.6",
42
- "typescript-eslint": "^8.0.0"
42
+ "typescript-eslint": "^8.5.0"
43
43
  },
44
44
  "devDependencies": {
45
45
  "@types/node": "^20.16.0",
46
- "eslint": "^9.9.0",
46
+ "eslint": "^9.10.0",
47
47
  "prettier": "^3.3.3",
48
48
  "svelte": "^4.2.18",
49
49
  "typescript": "^5.5.4"
@@ -65,7 +65,10 @@ const defaultConfig = tseslint.config(
65
65
  destructuredArrayIgnorePattern: '^_',
66
66
  varsIgnorePattern: '^_'
67
67
  }
68
- ]
68
+ ],
69
+ // Turned off because it doesn't seem too helpful, and it likes to error
70
+ // on things that seem to be just fine in generics.
71
+ '@typescript-eslint/no-unnecessary-type-parameters': 'off'
69
72
  }
70
73
  },
71
74
  {
@@ -35,7 +35,10 @@ const defaultConfig = tseslint.config(
35
35
  allowNumber: true,
36
36
  allowBoolean: true
37
37
  }
38
- ]
38
+ ],
39
+ // Turned off because it doesn't seem too helpful, and it likes to error
40
+ // on things that seem to be just fine in generics.
41
+ '@typescript-eslint/no-unnecessary-type-parameters': 'off'
39
42
  }
40
43
  },
41
44
  {