eslint-config-heck 8.0.2 → 8.0.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.
package/biomeJsTs.json CHANGED
@@ -154,7 +154,9 @@
154
154
  "noShadow": "off",
155
155
  "noUnnecessaryConditions": "off",
156
156
  "noUnresolvedImports": "off",
157
+ "noUselessCatchBinding": "error",
157
158
  "noUselessUndefined": "error",
159
+ "useConsistentArrowReturn": "error",
158
160
  "useConsistentTypeDefinitions": "error",
159
161
  "useExhaustiveSwitchCases": "error",
160
162
  "useExplicitType": "off",
package/nodeWithBiome.js CHANGED
@@ -118,7 +118,7 @@ export default [
118
118
  enforceForClassMembers: true,
119
119
  },
120
120
  ],
121
- "arrow-body-style": ["error", "as-needed"],
121
+ "arrow-body-style": "off",
122
122
  "block-scoped-var": "error",
123
123
  camelcase: "off",
124
124
  "capitalized-comments": "off",
@@ -634,7 +634,7 @@ export default [
634
634
  "unicorn/prefer-node-protocol": "off",
635
635
  "unicorn/prefer-number-properties": "off",
636
636
  "unicorn/prefer-object-from-entries": "error",
637
- "unicorn/prefer-optional-catch-binding": "error",
637
+ "unicorn/prefer-optional-catch-binding": "off",
638
638
  "unicorn/prefer-prototype-methods": "off",
639
639
  "unicorn/prefer-query-selector": "off",
640
640
  "unicorn/prefer-reflect-apply": "error",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "eslint-config-heck",
3
- "version": "8.0.2",
3
+ "version": "8.0.4",
4
4
  "description": "Contains an ESLint configuration for ES2015+, TypeScript, and React.",
5
5
  "type": "module",
6
6
  "main": "index.js",
@@ -28,27 +28,27 @@
28
28
  "author": "atheck",
29
29
  "license": "MIT",
30
30
  "dependencies": {
31
- "@stylistic/eslint-plugin": "5.2.3",
32
- "@typescript-eslint/eslint-plugin": "8.40.0",
33
- "@typescript-eslint/parser": "8.40.0",
31
+ "@stylistic/eslint-plugin": "5.3.1",
32
+ "@typescript-eslint/eslint-plugin": "8.42.0",
33
+ "@typescript-eslint/parser": "8.42.0",
34
34
  "eslint": "9.34.0",
35
35
  "eslint-plugin-import": "2.32.0",
36
36
  "eslint-plugin-jest": "29.0.1",
37
37
  "eslint-plugin-react": "7.37.5",
38
38
  "eslint-plugin-react-hooks": "5.2.0",
39
39
  "eslint-plugin-react-native": "5.0.0",
40
- "eslint-plugin-testing-library": "7.6.6",
40
+ "eslint-plugin-testing-library": "7.6.8",
41
41
  "eslint-plugin-unicorn": "60.0.0",
42
42
  "typescript": "5.9.2"
43
43
  },
44
44
  "devDependencies": {
45
- "@biomejs/biome": "2.2.2",
45
+ "@biomejs/biome": "2.2.3",
46
46
  "@testing-library/dom": "10.4.1",
47
47
  "@testing-library/react": "16.3.0",
48
48
  "@types/jest": "30.0.0",
49
- "@types/react": "19.1.11",
49
+ "@types/react": "19.1.12",
50
50
  "globals": "16.3.0",
51
- "jest": "30.0.5",
51
+ "jest": "30.1.3",
52
52
  "react": "19.1.1",
53
53
  "semantic-release": "24.2.7"
54
54
  },