@ethang/eslint-config 19.6.5 → 19.6.6

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/README.md CHANGED
@@ -5,11 +5,11 @@
5
5
  > [!CAUTION]
6
6
  > Do not use this with Prettier! Styling rules are included.
7
7
 
8
- - 889 errored rules.
8
+ - 888 errored rules.
9
9
  - 289 rules from [eslint-plugin-sonarjs](https://github.com/SonarSource/SonarJS/blob/master/packages/jsts/src/rules/README.md)
10
10
  - 145 rules from [@eslint/js](https://github.com/eslint/eslint/tree/main/packages/js)
11
11
  - 113 rules from [sindresorhus/eslint-plugin-unicorn](https://github.com/sindresorhus/eslint-plugin-unicorn)
12
- - 104 rules from [@typescript/eslint](https://github.com/typescript-eslint/typescript-eslint)
12
+ - 103 rules from [@typescript/eslint](https://github.com/typescript-eslint/typescript-eslint)
13
13
  - 91 rules from [@stylistic/eslint-plugin](https://eslint.style/)
14
14
  - 42 rules from [eslint-plugin-lodash](https://github.com/wix-incubator/eslint-plugin-lodash)
15
15
  - 35 rules from [jsx-a11y](https://github.com/jsx-eslint/eslint-plugin-jsx-a11y)
package/eslint.config.js CHANGED
@@ -401,7 +401,7 @@ export default tseslint.config(
401
401
  "@typescript-eslint/no-unnecessary-type-arguments": "error",
402
402
  "@typescript-eslint/no-unnecessary-type-assertion": "error",
403
403
  "@typescript-eslint/no-unnecessary-type-constraint": "error",
404
- "@typescript-eslint/no-unnecessary-type-parameters": "error",
404
+ "@typescript-eslint/no-unnecessary-type-parameters": "off",
405
405
  "@typescript-eslint/no-unsafe-argument": "error",
406
406
  "@typescript-eslint/no-unsafe-assignment": "error",
407
407
  "@typescript-eslint/no-unsafe-call": "error",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ethang/eslint-config",
3
- "version": "19.6.5",
3
+ "version": "19.6.6",
4
4
  "repository": {
5
5
  "url": "git+https://github.com/eglove/eslint-config-ethang.git"
6
6
  },
@@ -22,7 +22,7 @@
22
22
  "@ethang/eslint-plugin": "^0.0.11",
23
23
  "@stylistic/eslint-plugin": "^2.8.0",
24
24
  "@tanstack/eslint-plugin-query": "^5.57.0",
25
- "@tanstack/eslint-plugin-router": "^1.58.0",
25
+ "@tanstack/eslint-plugin-router": "^1.58.6",
26
26
  "@typescript-eslint/parser": "^8.6.0",
27
27
  "eslint": "^9.11.0",
28
28
  "eslint-plugin-astro": "^1.2.4",
@@ -62,7 +62,7 @@
62
62
  "@ethang/eslint-plugin": "^0.0.11",
63
63
  "@stylistic/eslint-plugin": "^2.8.0",
64
64
  "@tanstack/eslint-plugin-query": "^5.57.0",
65
- "@tanstack/eslint-plugin-router": "^1.58.0",
65
+ "@tanstack/eslint-plugin-router": "^1.58.6",
66
66
  "@typescript-eslint/parser": "^8.6.0",
67
67
  "eslint": "^9.11.0",
68
68
  "eslint-plugin-astro": "^1.2.4",
@@ -64,6 +64,10 @@ const customRules = [
64
64
  name: "no-redeclare",
65
65
  rule: "off",
66
66
  },
67
+ {
68
+ name: "no-unnecessary-type-parameters",
69
+ rule: "off",
70
+ },
67
71
  {
68
72
  name: "no-use-before-define",
69
73
  rule: "off",