eslint-config-conventions 21.0.1 → 21.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.
Files changed (2) hide show
  1. package/.oxlintrc.json +2 -1
  2. package/package.json +1 -1
package/.oxlintrc.json CHANGED
@@ -250,7 +250,8 @@
250
250
  "import-x/no-named-default": "error",
251
251
  "import-x/no-empty-named-blocks": "error",
252
252
  "import-x/no-anonymous-default-export": "error",
253
- "import-x/consistent-type-specifier-style": ["error", "prefer-top-level"]
253
+ "import-x/consistent-type-specifier-style": ["error", "prefer-top-level"],
254
+ "import-x/no-unassigned-import": "off"
254
255
  },
255
256
  "overrides": [
256
257
  {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "eslint-config-conventions",
3
- "version": "21.0.1",
3
+ "version": "21.0.2",
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>",