@typescript-eslint/eslint-plugin 8.53.2-alpha.3 → 8.53.2-alpha.4

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.
@@ -689,8 +689,7 @@ exports.default = (0, util_1.createRule)({
689
689
  continue;
690
690
  }
691
691
  // skip ignored parameters
692
- if (def.name.type === utils_1.AST_NODE_TYPES.Identifier &&
693
- options.caughtErrorsIgnorePattern?.test(def.name.name)) {
692
+ if (options.caughtErrorsIgnorePattern?.test(def.name.name)) {
694
693
  if (options.reportUsedIgnorePattern && used) {
695
694
  report(variable, {
696
695
  messageId: 'usedIgnoredVar',
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@typescript-eslint/eslint-plugin",
3
- "version": "8.53.2-alpha.3",
3
+ "version": "8.53.2-alpha.4",
4
4
  "description": "TypeScript plugin for ESLint",
5
5
  "files": [
6
6
  "dist",
@@ -59,10 +59,10 @@
59
59
  },
60
60
  "dependencies": {
61
61
  "@eslint-community/regexpp": "^4.12.2",
62
- "@typescript-eslint/scope-manager": "8.53.2-alpha.3",
63
- "@typescript-eslint/type-utils": "8.53.2-alpha.3",
64
- "@typescript-eslint/utils": "8.53.2-alpha.3",
65
- "@typescript-eslint/visitor-keys": "8.53.2-alpha.3",
62
+ "@typescript-eslint/scope-manager": "8.53.2-alpha.4",
63
+ "@typescript-eslint/type-utils": "8.53.2-alpha.4",
64
+ "@typescript-eslint/utils": "8.53.2-alpha.4",
65
+ "@typescript-eslint/visitor-keys": "8.53.2-alpha.4",
66
66
  "ignore": "^7.0.5",
67
67
  "natural-compare": "^1.4.0",
68
68
  "ts-api-utils": "^2.4.0"
@@ -70,8 +70,8 @@
70
70
  "devDependencies": {
71
71
  "@types/mdast": "^4.0.4",
72
72
  "@types/natural-compare": "*",
73
- "@typescript-eslint/rule-schema-to-typescript-types": "8.53.2-alpha.3",
74
- "@typescript-eslint/rule-tester": "8.53.2-alpha.3",
73
+ "@typescript-eslint/rule-schema-to-typescript-types": "8.53.2-alpha.4",
74
+ "@typescript-eslint/rule-tester": "8.53.2-alpha.4",
75
75
  "@vitest/coverage-v8": "^3.2.4",
76
76
  "ajv": "^6.12.6",
77
77
  "eslint": "*",
@@ -90,7 +90,7 @@
90
90
  "vitest": "^3.2.4"
91
91
  },
92
92
  "peerDependencies": {
93
- "@typescript-eslint/parser": "^8.53.2-alpha.3",
93
+ "@typescript-eslint/parser": "^8.53.2-alpha.4",
94
94
  "eslint": "^8.57.0 || ^9.0.0",
95
95
  "typescript": ">=4.8.4 <6.0.0"
96
96
  },