eslint-config-heck 9.4.2 → 9.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
@@ -151,6 +151,7 @@
151
151
  },
152
152
  "nursery": {
153
153
  "noAmbiguousAnchorText": "off",
154
+ "noComponentHookFactories": "error",
154
155
  "noConditionalExpect": "error",
155
156
  "noContinue": "off",
156
157
  "noDivRegex": "off",
@@ -162,9 +163,11 @@
162
163
  "noFloatingClasses": "error",
163
164
  "noFloatingPromises": "error",
164
165
  "noForIn": "warn",
166
+ "noIdenticalTestTitle": "error",
165
167
  "noImpliedEval": "error",
166
168
  "noIncrementDecrement": "off",
167
169
  "noInlineStyles": "warn",
170
+ "noJsxNamespace": "error",
168
171
  "noJsxPropsBind": "off",
169
172
  "noLeakedRender": "error",
170
173
  "noMisleadingReturnType": "off",
@@ -228,14 +231,19 @@
228
231
  "useExplicitType": "off",
229
232
  "useFind": "off",
230
233
  "useGlobalThis": "off",
234
+ "useIframeSandbox": "error",
231
235
  "useImportsFirst": "error",
232
236
  "useNamedCaptureGroup": "error",
233
237
  "useNullishCoalescing": "error",
234
238
  "usePlaywrightValidDescribeCallback": "off",
239
+ "useReactAsyncServerFunction": "warn",
240
+ "useReduceTypeParameter": "error",
235
241
  "useRegexpExec": "error",
236
242
  "useSortedClasses": "off",
237
243
  "useSpread": "error",
238
- "useUnicodeRegex": "error"
244
+ "useStringStartsEndsWith": "error",
245
+ "useUnicodeRegex": "error",
246
+ "useVarsOnTop": "error"
239
247
  },
240
248
  "performance": {
241
249
  "noAccumulatingSpread": "error",
package/nodeWithBiome.js CHANGED
@@ -282,7 +282,7 @@ export default [
282
282
  "sort-vars": "off",
283
283
  strict: ["error", "global"],
284
284
  "symbol-description": "off",
285
- "vars-on-top": "error",
285
+ "vars-on-top": "off",
286
286
  yoda: "off",
287
287
 
288
288
  // Layout & Formatting
@@ -446,7 +446,7 @@ export default [
446
446
  "react/no-invalid-html-attribute": "error",
447
447
  "react/no-is-mounted": "error",
448
448
  "react/no-multi-comp": "off",
449
- "react/no-namespace": "error",
449
+ "react/no-namespace": "off",
450
450
  "react/no-object-type-as-default-prop": "error",
451
451
  "react/no-redundant-should-component-update": "error",
452
452
  "react/no-render-return-value": "off",
@@ -646,7 +646,7 @@ export default [
646
646
  "unicorn/prefer-string-raw": "error",
647
647
  "unicorn/prefer-string-replace-all": "error",
648
648
  "unicorn/prefer-string-slice": "off",
649
- "unicorn/prefer-string-starts-ends-with": "error",
649
+ "unicorn/prefer-string-starts-ends-with": "off",
650
650
  "unicorn/prefer-string-trim-start-end": "off",
651
651
  "unicorn/prefer-structured-clone": "error",
652
652
  "unicorn/prefer-switch": "error",
@@ -903,7 +903,7 @@ export default [
903
903
  "@typescript-eslint/prefer-promise-reject-errors": "error",
904
904
  "@typescript-eslint/prefer-readonly": "off",
905
905
  "@typescript-eslint/prefer-readonly-parameter-types": "off",
906
- "@typescript-eslint/prefer-reduce-type-parameter": "error",
906
+ "@typescript-eslint/prefer-reduce-type-parameter": "off",
907
907
  "@typescript-eslint/prefer-regexp-exec": "off",
908
908
  "@typescript-eslint/prefer-return-this-type": "error",
909
909
  "@typescript-eslint/prefer-string-starts-ends-with": "error",
@@ -989,7 +989,7 @@ export default [
989
989
  "jest/no-export": "off",
990
990
  "jest/no-focused-tests": "off",
991
991
  "jest/no-hooks": "off",
992
- "jest/no-identical-title": "error",
992
+ "jest/no-identical-title": "off",
993
993
  "jest/no-interpolation-in-snapshots": "error",
994
994
  "jest/no-jasmine-globals": "error",
995
995
  "jest/no-large-snapshots": "off",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "eslint-config-heck",
3
- "version": "9.4.2",
3
+ "version": "9.5.0",
4
4
  "description": "Contains an ESLint configuration for ES2015+, TypeScript, and React.",
5
5
  "type": "module",
6
6
  "main": "index.js",
@@ -29,25 +29,25 @@
29
29
  "license": "MIT",
30
30
  "dependencies": {
31
31
  "@stylistic/eslint-plugin": "5.10.0",
32
- "@typescript-eslint/eslint-plugin": "8.58.1",
33
- "@typescript-eslint/parser": "8.58.1",
32
+ "@typescript-eslint/eslint-plugin": "8.58.2",
33
+ "@typescript-eslint/parser": "8.58.2",
34
34
  "eslint": "9.39.4",
35
35
  "eslint-plugin-import": "2.32.0",
36
36
  "eslint-plugin-jest": "29.15.2",
37
37
  "eslint-plugin-react": "7.37.5",
38
- "eslint-plugin-react-hooks": "7.0.1",
38
+ "eslint-plugin-react-hooks": "7.1.1",
39
39
  "eslint-plugin-react-native": "5.0.0",
40
40
  "eslint-plugin-testing-library": "7.16.2",
41
41
  "eslint-plugin-unicorn": "64.0.0",
42
- "typescript": "6.0.2"
42
+ "typescript": "6.0.3"
43
43
  },
44
44
  "devDependencies": {
45
- "@biomejs/biome": "2.4.11",
45
+ "@biomejs/biome": "2.4.12",
46
46
  "@testing-library/dom": "10.4.1",
47
47
  "@testing-library/react": "16.3.2",
48
48
  "@types/jest": "30.0.0",
49
49
  "@types/react": "19.2.14",
50
- "globals": "17.4.0",
50
+ "globals": "17.5.0",
51
51
  "jest": "30.3.0",
52
52
  "react": "19.2.5",
53
53
  "semantic-release": "25.0.3"