eslint-config-heck 7.0.4 → 7.1.1

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
@@ -110,7 +110,12 @@
110
110
  "noUnreachableSuper": "error",
111
111
  "noUnsafeFinally": "error",
112
112
  "noUnsafeOptionalChaining": "error",
113
- "noUnusedFunctionParameters": "error",
113
+ "noUnusedFunctionParameters": {
114
+ "level": "error",
115
+ "options": {
116
+ "ignoreRestSiblings": true
117
+ }
118
+ },
114
119
  "noUnusedImports": "error",
115
120
  "noUnusedLabels": "error",
116
121
  "noUnusedPrivateClassMembers": "error",
@@ -138,6 +143,8 @@
138
143
  "noImportCycles": "error",
139
144
  "noNestedComponentDefinitions": "error",
140
145
  "noNoninteractiveElementInteractions": "error",
146
+ "noMagicNumbers": "off",
147
+ "noMisusedPromises": "error",
141
148
  "noProcessGlobal": "error",
142
149
  "noReactPropAssign": "error",
143
150
  "noRestrictedElements": "off",
package/nodeWithBiome.js CHANGED
@@ -791,12 +791,7 @@ export default [
791
791
  "@typescript-eslint/no-explicit-any": "off",
792
792
  "@typescript-eslint/no-extra-non-null-assertion": "off",
793
793
  "@typescript-eslint/no-extraneous-class": "error",
794
- "@typescript-eslint/no-floating-promises": [
795
- "error",
796
- {
797
- ignoreVoid: false,
798
- },
799
- ],
794
+ "@typescript-eslint/no-floating-promises": "off",
800
795
  "@typescript-eslint/no-for-in-array": "error",
801
796
  "no-implied-eval": "off",
802
797
  "@typescript-eslint/no-implied-eval": "error",
@@ -811,7 +806,7 @@ export default [
811
806
  "@typescript-eslint/no-magic-numbers": "off",
812
807
  "@typescript-eslint/no-meaningless-void-operator": "off",
813
808
  "@typescript-eslint/no-misused-new": "off",
814
- "@typescript-eslint/no-misused-promises": "error",
809
+ "@typescript-eslint/no-misused-promises": "off",
815
810
  "@typescript-eslint/no-misused-spread": "error",
816
811
  "@typescript-eslint/no-mixed-enums": "off",
817
812
  "@typescript-eslint/no-namespace": "off",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "eslint-config-heck",
3
- "version": "7.0.4",
3
+ "version": "7.1.1",
4
4
  "description": "Contains an ESLint configuration for ES2015+, TypeScript, and React.",
5
5
  "type": "module",
6
6
  "main": "index.js",
@@ -29,8 +29,8 @@
29
29
  "license": "MIT",
30
30
  "dependencies": {
31
31
  "@stylistic/eslint-plugin": "5.1.0",
32
- "@typescript-eslint/eslint-plugin": "8.35.1",
33
- "@typescript-eslint/parser": "8.35.1",
32
+ "@typescript-eslint/eslint-plugin": "8.36.0",
33
+ "@typescript-eslint/parser": "8.36.0",
34
34
  "eslint": "9.30.1",
35
35
  "eslint-plugin-import": "2.32.0",
36
36
  "eslint-plugin-jest": "29.0.1",
@@ -42,13 +42,13 @@
42
42
  "typescript": "5.8.3"
43
43
  },
44
44
  "devDependencies": {
45
- "@biomejs/biome": "2.0.6",
45
+ "@biomejs/biome": "2.1.1",
46
46
  "@testing-library/dom": "10.4.0",
47
47
  "@testing-library/react": "16.3.0",
48
48
  "@types/jest": "30.0.0",
49
49
  "@types/react": "19.1.8",
50
50
  "globals": "16.3.0",
51
- "jest": "30.0.3",
51
+ "jest": "30.0.4",
52
52
  "react": "19.1.0",
53
53
  "semantic-release": "24.2.6"
54
54
  },