eslint-config-heck 11.0.0 → 11.0.2

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
@@ -204,7 +204,19 @@
204
204
  "withinDescribe": "it"
205
205
  }
206
206
  },
207
- "useDestructuring": "off",
207
+ "useDestructuring": {
208
+ "level": "error",
209
+ "options": {
210
+ "assignmentExpression": {
211
+ "array": false,
212
+ "object": false
213
+ },
214
+ "variableDeclarator": {
215
+ "array": false,
216
+ "object": true
217
+ }
218
+ }
219
+ },
208
220
  "useDisposables": "error",
209
221
  "useDomNodeTextContent": "error",
210
222
  "useDomQuerySelector": "error",
package/nodeWithBiome.js CHANGED
@@ -251,19 +251,7 @@ export default [
251
251
  "operator-assignment": "off",
252
252
  "prefer-arrow-callback": "off",
253
253
  "prefer-const": "off",
254
- "prefer-destructuring": [
255
- "error",
256
- {
257
- VariableDeclarator: {
258
- array: false,
259
- object: true,
260
- },
261
- AssignmentExpression: {
262
- array: false,
263
- object: false,
264
- },
265
- },
266
- ],
254
+ "prefer-destructuring": "off",
267
255
  "prefer-exponentiation-operator": "off",
268
256
  "prefer-named-capture-group": "off",
269
257
  "prefer-numeric-literals": "off",
@@ -809,20 +797,7 @@ export default [
809
797
  "@typescript-eslint/only-throw-error": "off",
810
798
  "@typescript-eslint/parameter-properties": "off",
811
799
  "@typescript-eslint/prefer-as-const": "off",
812
- "prefer-destructuring": "off",
813
- "@typescript-eslint/prefer-destructuring": [
814
- "error",
815
- {
816
- VariableDeclarator: {
817
- array: false,
818
- object: true,
819
- },
820
- AssignmentExpression: {
821
- array: false,
822
- object: false,
823
- },
824
- },
825
- ],
800
+ "@typescript-eslint/prefer-destructuring": "off",
826
801
  "@typescript-eslint/prefer-enum-initializers": "off",
827
802
  // unicorns prefer-array-find is more powerful
828
803
  "@typescript-eslint/prefer-find": "off",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "eslint-config-heck",
3
- "version": "11.0.0",
3
+ "version": "11.0.2",
4
4
  "description": "Contains an ESLint configuration for ES2015+, TypeScript, and React.",
5
5
  "type": "module",
6
6
  "main": "index.js",
@@ -27,12 +27,13 @@
27
27
  "author": "atheck",
28
28
  "license": "MIT",
29
29
  "dependencies": {
30
+ "@biomejs/biome": "2.4.16",
30
31
  "@stylistic/eslint-plugin": "5.10.0",
31
- "@typescript-eslint/eslint-plugin": "8.59.4",
32
- "@typescript-eslint/parser": "8.59.4",
33
- "@eslint-react/eslint-plugin": "5.8.3",
34
- "eslint": "10.4.0",
35
- "eslint-import-resolver-typescript": "4.4.4",
32
+ "@typescript-eslint/eslint-plugin": "8.60.1",
33
+ "@typescript-eslint/parser": "8.60.1",
34
+ "@eslint-react/eslint-plugin": "5.8.11",
35
+ "eslint": "10.4.1",
36
+ "eslint-import-resolver-typescript": "4.4.5",
36
37
  "eslint-plugin-import-x": "4.16.2",
37
38
  "eslint-plugin-jest": "29.15.2",
38
39
  "eslint-plugin-testing-library": "7.16.2",
@@ -40,14 +41,13 @@
40
41
  "typescript": "6.0.3"
41
42
  },
42
43
  "devDependencies": {
43
- "@biomejs/biome": "2.4.15",
44
44
  "@testing-library/dom": "10.4.1",
45
45
  "@testing-library/react": "16.3.2",
46
46
  "@types/jest": "30.0.0",
47
- "@types/react": "19.2.15",
47
+ "@types/react": "19.2.16",
48
48
  "globals": "17.6.0",
49
49
  "jest": "30.4.2",
50
- "react": "19.2.6",
50
+ "react": "19.2.7",
51
51
  "semantic-release": "25.0.3"
52
52
  },
53
53
  "repository": {