eslint-config-conventions 21.0.2 → 21.0.3

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.
Files changed (2) hide show
  1. package/.oxlintrc.json +3 -1
  2. package/package.json +7 -7
package/.oxlintrc.json CHANGED
@@ -194,6 +194,7 @@
194
194
  "unicorn/consistent-assert": "error",
195
195
  "unicorn/no-accessor-recursion": "error",
196
196
  "unicorn/no-array-reverse": "off",
197
+ "unicorn/no-array-sort": "off",
197
198
  "react/no-array-index-key": "off",
198
199
  "react-hooks/rules-of-hooks": "error",
199
200
  "react-hooks/exhaustive-deps": "error",
@@ -251,7 +252,8 @@
251
252
  "import-x/no-empty-named-blocks": "error",
252
253
  "import-x/no-anonymous-default-export": "error",
253
254
  "import-x/consistent-type-specifier-style": ["error", "prefer-top-level"],
254
- "import-x/no-unassigned-import": "off"
255
+ "import-x/no-unassigned-import": "off",
256
+ "import-x/no-named-as-default-member": "off"
255
257
  },
256
258
  "overrides": [
257
259
  {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "eslint-config-conventions",
3
- "version": "21.0.2",
3
+ "version": "21.0.3",
4
4
  "public": true,
5
5
  "description": "ESLint shareable config to enforce strict conventions and good code quality.",
6
6
  "author": "Théo LUDWIG <contact@theoludwig.fr>",
@@ -75,18 +75,18 @@
75
75
  }
76
76
  },
77
77
  "devDependencies": {
78
- "@types/node": "24.5.2",
78
+ "@types/node": "24.7.0",
79
79
  "globals": "16.4.0",
80
80
  "editorconfig-checker": "6.1.0",
81
- "oxlint": "1.18.0",
82
- "@oxlint/migrate": "1.18.0",
83
- "eslint": "9.36.0",
81
+ "oxlint": "1.20.0",
82
+ "@oxlint/migrate": "1.20.0",
83
+ "eslint": "9.37.0",
84
84
  "eslint-plugin-promise": "7.2.1",
85
85
  "eslint-plugin-unicorn": "61.0.2",
86
86
  "eslint-plugin-import-x": "4.16.1",
87
- "typescript-eslint": "8.44.1",
87
+ "typescript-eslint": "8.46.0",
88
88
  "prettier": "3.6.2",
89
89
  "semantic-release": "24.2.9",
90
- "typescript": "5.9.2"
90
+ "typescript": "5.9.3"
91
91
  }
92
92
  }