eslint-config-heck 8.8.2 → 8.10.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
@@ -150,23 +150,28 @@
150
150
  "noDeprecatedImports": "off",
151
151
  "noEmptySource": "error",
152
152
  "noFloatingPromises": "error",
153
+ "noForIn": "error",
153
154
  "noImportCycles": "error",
154
155
  "noIncrementDecrement": "off",
155
156
  "noJsxLiterals": "error",
156
157
  "noMisusedPromises": "error",
157
- "noParametersOnlyUsedInRecursion": "off",
158
+ "noParametersOnlyUsedInRecursion": "warn",
158
159
  "noReactForwardRef": "error",
159
160
  "noShadow": "off",
161
+ "noSyncScripts": "error",
160
162
  "noUnknownAttribute": "error",
161
163
  "noUnnecessaryConditions": "off",
162
164
  "noUnresolvedImports": "off",
163
165
  "noUnusedExpressions": "error",
164
166
  "noUselessCatchBinding": "error",
165
167
  "noUselessUndefined": "error",
168
+ "useArraySortCompare": "error",
166
169
  "useConsistentArrowReturn": "error",
167
170
  "useExhaustiveSwitchCases": "error",
168
171
  "useExplicitType": "off",
169
- "useSortedClasses": "off"
172
+ "useFind": "off",
173
+ "useSortedClasses": "off",
174
+ "useSpread": "error"
170
175
  },
171
176
  "performance": {
172
177
  "noAccumulatingSpread": "error",
package/nodeWithBiome.js CHANGED
@@ -654,7 +654,7 @@ export default [
654
654
  "unicorn/prefer-set-has": "error",
655
655
  "unicorn/prefer-set-size": "error",
656
656
  "unicorn/prefer-single-call": "error",
657
- "unicorn/prefer-spread": "error",
657
+ "unicorn/prefer-spread": "off",
658
658
  "unicorn/prefer-string-raw": "error",
659
659
  "unicorn/prefer-string-replace-all": "error",
660
660
  "unicorn/prefer-string-slice": "off",
@@ -809,7 +809,7 @@ export default [
809
809
  "@typescript-eslint/no-extra-non-null-assertion": "off",
810
810
  "@typescript-eslint/no-extraneous-class": "error",
811
811
  "@typescript-eslint/no-floating-promises": "off",
812
- "@typescript-eslint/no-for-in-array": "error",
812
+ "@typescript-eslint/no-for-in-array": "off",
813
813
  "no-implied-eval": "off",
814
814
  "@typescript-eslint/no-implied-eval": "error",
815
815
  "@typescript-eslint/no-import-type-side-effects": "off",
@@ -869,6 +869,8 @@ export default [
869
869
  "@typescript-eslint/no-unsafe-unary-minus": "error",
870
870
  "no-unused-expressions": "off",
871
871
  "@typescript-eslint/no-unused-expressions": "off",
872
+ "no-unused-private-class-members": "off",
873
+ "@typescript-eslint/no-unused-private-class-members": "off",
872
874
  "no-unused-vars": "off",
873
875
  "@typescript-eslint/no-unused-vars": "off",
874
876
  "no-use-before-define": "off",
@@ -923,7 +925,7 @@ export default [
923
925
  "@typescript-eslint/prefer-string-starts-ends-with": "error",
924
926
  "@typescript-eslint/promise-function-async": "error",
925
927
  "@typescript-eslint/related-getter-setter-pairs": "error",
926
- "@typescript-eslint/require-array-sort-compare": "error",
928
+ "@typescript-eslint/require-array-sort-compare": "off",
927
929
  "require-await": "off",
928
930
  "@typescript-eslint/require-await": "off",
929
931
  "@typescript-eslint/restrict-plus-operands": "error",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "eslint-config-heck",
3
- "version": "8.8.2",
3
+ "version": "8.10.0",
4
4
  "description": "Contains an ESLint configuration for ES2015+, TypeScript, and React.",
5
5
  "type": "module",
6
6
  "main": "index.js",
@@ -29,28 +29,28 @@
29
29
  "license": "MIT",
30
30
  "dependencies": {
31
31
  "@stylistic/eslint-plugin": "5.5.0",
32
- "@typescript-eslint/eslint-plugin": "8.46.3",
33
- "@typescript-eslint/parser": "8.46.3",
32
+ "@typescript-eslint/eslint-plugin": "8.47.0",
33
+ "@typescript-eslint/parser": "8.47.0",
34
34
  "eslint": "9.39.1",
35
35
  "eslint-plugin-import": "2.32.0",
36
- "eslint-plugin-jest": "29.0.1",
36
+ "eslint-plugin-jest": "29.1.0",
37
37
  "eslint-plugin-react": "7.37.5",
38
38
  "eslint-plugin-react-hooks": "7.0.1",
39
39
  "eslint-plugin-react-native": "5.0.0",
40
- "eslint-plugin-testing-library": "7.13.3",
40
+ "eslint-plugin-testing-library": "7.13.4",
41
41
  "eslint-plugin-unicorn": "62.0.0",
42
42
  "typescript": "5.9.3"
43
43
  },
44
44
  "devDependencies": {
45
- "@biomejs/biome": "2.3.4",
45
+ "@biomejs/biome": "2.3.6",
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.2.2",
49
+ "@types/react": "19.2.6",
50
50
  "globals": "16.5.0",
51
51
  "jest": "30.2.0",
52
52
  "react": "19.2.0",
53
- "semantic-release": "25.0.1"
53
+ "semantic-release": "25.0.2"
54
54
  },
55
55
  "repository": {
56
56
  "type": "git",