eslint-config-heck 8.3.1 → 8.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.
package/biomeJsTs.json CHANGED
@@ -99,7 +99,7 @@
99
99
  "noInnerDeclarations": "error",
100
100
  "noInvalidBuiltinInstantiation": "error",
101
101
  "noInvalidConstructorSuper": "error",
102
- "noInvalidUseBeforeDeclaration": "off",
102
+ "noInvalidUseBeforeDeclaration": "error",
103
103
  "noNestedComponentDefinitions": "error",
104
104
  "noNodejsModules": "off",
105
105
  "noNonoctalDecimalEscape": "error",
@@ -146,15 +146,18 @@
146
146
  "useYield": "error"
147
147
  },
148
148
  "nursery": {
149
+ "noDeprecatedImports": "off",
149
150
  "noFloatingPromises": "error",
150
151
  "noImportCycles": "error",
151
152
  "noJsxLiterals": "error",
152
153
  "noMisusedPromises": "error",
153
154
  "noNonNullAssertedOptionalChain": "error",
155
+ "noReactForwardRef": "error",
154
156
  "noSecrets": "off",
155
157
  "noShadow": "off",
156
158
  "noUnnecessaryConditions": "off",
157
159
  "noUnresolvedImports": "off",
160
+ "noUnusedExpressions": "error",
158
161
  "noUselessCatchBinding": "error",
159
162
  "noUselessUndefined": "error",
160
163
  "useConsistentArrowReturn": "error",
package/nodeWithBiome.js CHANGED
@@ -102,7 +102,7 @@ export default [
102
102
  "no-unsafe-optional-chaining": "off",
103
103
  "no-unused-private-class-members": "off",
104
104
  "no-unused-vars": "off",
105
- "no-use-before-define": ["error", "nofunc"],
105
+ "no-use-before-define": "off",
106
106
  "no-useless-assignment": "error",
107
107
  "no-useless-backreference": "off",
108
108
  "require-atomic-updates": "error",
@@ -232,7 +232,7 @@ export default [
232
232
  },
233
233
  ],
234
234
  "no-unneeded-ternary": "off",
235
- "no-unused-expressions": "error",
235
+ "no-unused-expressions": "off",
236
236
  "no-unused-labels": "off",
237
237
  "no-useless-call": "error",
238
238
  "no-useless-catch": "off",
@@ -282,8 +282,8 @@ export default [
282
282
  "preserve-caught-error": [
283
283
  "error",
284
284
  {
285
- "requireCatchParameter": true
286
- }
285
+ requireCatchParameter: true,
286
+ },
287
287
  ],
288
288
  radix: "off",
289
289
  "require-await": "off",
@@ -865,7 +865,7 @@ export default [
865
865
  "@typescript-eslint/no-unsafe-type-assertion": "error",
866
866
  "@typescript-eslint/no-unsafe-unary-minus": "error",
867
867
  "no-unused-expressions": "off",
868
- "@typescript-eslint/no-unused-expressions": "error",
868
+ "@typescript-eslint/no-unused-expressions": "off",
869
869
  "no-unused-vars": "off",
870
870
  "@typescript-eslint/no-unused-vars": "off",
871
871
  "no-use-before-define": "off",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "eslint-config-heck",
3
- "version": "8.3.1",
3
+ "version": "8.5.0",
4
4
  "description": "Contains an ESLint configuration for ES2015+, TypeScript, and React.",
5
5
  "type": "module",
6
6
  "main": "index.js",
@@ -29,27 +29,27 @@
29
29
  "license": "MIT",
30
30
  "dependencies": {
31
31
  "@stylistic/eslint-plugin": "5.4.0",
32
- "@typescript-eslint/eslint-plugin": "8.44.1",
33
- "@typescript-eslint/parser": "8.44.1",
32
+ "@typescript-eslint/eslint-plugin": "8.45.0",
33
+ "@typescript-eslint/parser": "8.45.0",
34
34
  "eslint": "9.36.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
- "eslint-plugin-react-hooks": "5.2.0",
38
+ "eslint-plugin-react-hooks": "6.1.0",
39
39
  "eslint-plugin-react-native": "5.0.0",
40
- "eslint-plugin-testing-library": "7.10.0",
40
+ "eslint-plugin-testing-library": "7.11.0",
41
41
  "eslint-plugin-unicorn": "61.0.2",
42
- "typescript": "5.9.2"
42
+ "typescript": "5.9.3"
43
43
  },
44
44
  "devDependencies": {
45
- "@biomejs/biome": "2.2.4",
45
+ "@biomejs/biome": "2.2.5",
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.15",
49
+ "@types/react": "19.2.0",
50
50
  "globals": "16.4.0",
51
51
  "jest": "30.2.0",
52
- "react": "19.1.1",
52
+ "react": "19.2.0",
53
53
  "semantic-release": "24.2.9"
54
54
  },
55
55
  "repository": {