eslint-config-heck 2.12.1 → 2.13.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/node.cjs CHANGED
@@ -784,6 +784,7 @@ const rules = {
784
784
  "unicorn/no-lonely-if": "error",
785
785
  "unicorn/no-magic-array-flat-depth": "error",
786
786
  "unicorn/no-negated-condition": "error",
787
+ "unicorn/no-negation-in-equality-check": "error",
787
788
  "unicorn/no-nested-ternary": "off",
788
789
  "unicorn/no-new-array": "error",
789
790
  "unicorn/no-new-buffer": "error",
@@ -809,12 +810,7 @@ const rules = {
809
810
  "unicorn/number-literal-case": "error",
810
811
  "unicorn/numeric-separators-style": "error",
811
812
  "unicorn/prefer-add-event-listener": "error",
812
- "unicorn/prefer-array-find": [
813
- "error",
814
- {
815
- checkFromLast: true,
816
- },
817
- ],
813
+ "unicorn/prefer-array-find": "error",
818
814
  "unicorn/prefer-array-flat": "error",
819
815
  "unicorn/prefer-array-flat-map": "error",
820
816
  "unicorn/prefer-array-index-of": "error",
package/nodeWithBiome.cjs CHANGED
@@ -621,6 +621,7 @@ const rules = {
621
621
  "unicorn/no-keyword-prefix": "off",
622
622
  "unicorn/no-lonely-if": "off",
623
623
  "unicorn/no-negated-condition": "off",
624
+ "unicorn/no-negation-in-equality-check": "error",
624
625
  "unicorn/no-nested-ternary": "off",
625
626
  "unicorn/no-new-array": "error",
626
627
  "unicorn/no-new-buffer": "error",
@@ -646,12 +647,7 @@ const rules = {
646
647
  "unicorn/number-literal-case": "off",
647
648
  "unicorn/numeric-separators-style": "error",
648
649
  "unicorn/prefer-add-event-listener": "error",
649
- "unicorn/prefer-array-find": [
650
- "error",
651
- {
652
- checkFromLast: true,
653
- },
654
- ],
650
+ "unicorn/prefer-array-find": "error",
655
651
  "unicorn/prefer-array-flat": "error",
656
652
  "unicorn/prefer-array-flat-map": "off",
657
653
  "unicorn/prefer-array-index-of": "error",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "eslint-config-heck",
3
- "version": "2.12.1",
3
+ "version": "2.13.0",
4
4
  "description": "Contains an ESLint configuration for ES2015+, TypeScript, and React.",
5
5
  "type": "module",
6
6
  "main": "index.js",
@@ -29,24 +29,24 @@
29
29
  "author": "atheck",
30
30
  "license": "MIT",
31
31
  "dependencies": {
32
- "@typescript-eslint/eslint-plugin": "7.12.0",
33
- "@typescript-eslint/parser": "7.12.0",
32
+ "@typescript-eslint/eslint-plugin": "7.14.1",
33
+ "@typescript-eslint/parser": "7.14.1",
34
34
  "eslint": "8.57.0",
35
35
  "eslint-import-resolver-typescript": "3.6.1",
36
36
  "eslint-plugin-deprecation": "3.0.0",
37
37
  "eslint-plugin-import": "2.29.1",
38
38
  "eslint-plugin-jest": "28.6.0",
39
- "eslint-plugin-react": "7.34.2",
39
+ "eslint-plugin-react": "7.34.3",
40
40
  "eslint-plugin-react-hooks": "4.6.2",
41
41
  "eslint-plugin-react-native": "4.1.0",
42
42
  "eslint-plugin-testing-library": "6.2.2",
43
43
  "eslint-plugin-typescript-heck": "1.3.1",
44
- "eslint-plugin-unicorn": "53.0.0",
45
- "typescript": "5.4.5"
44
+ "eslint-plugin-unicorn": "54.0.0",
45
+ "typescript": "5.5.2"
46
46
  },
47
47
  "devDependencies": {
48
- "@biomejs/biome": "1.8.0",
49
- "@testing-library/dom": "10.1.0",
48
+ "@biomejs/biome": "1.8.2",
49
+ "@testing-library/dom": "10.2.0",
50
50
  "@testing-library/react": "16.0.0",
51
51
  "@types/jest": "29.5.12",
52
52
  "@types/react": "18.3.3",