@html-validate/eslint-config 9.0.0 → 9.1.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/index.mjs CHANGED
@@ -370,15 +370,6 @@ export default [
370
370
  },
371
371
  }),
372
372
 
373
- defineConfig({
374
- name: "@html-validate/eslint-config/node20",
375
- files: ["eslint.config.mjs"],
376
- rules: {
377
- /* it flags import.meta.dirname as unspported, we're dropping node20 very soon so adding this for now */
378
- "n/no-unsupported-features/node-builtins": "off",
379
- },
380
- }),
381
-
382
373
  defineConfig({
383
374
  /* ensure all of these patterns are linted */
384
375
  name: "@html-validate/eslint-config/extensions",
@@ -420,4 +411,14 @@ export default [
420
411
  "import-x/no-unresolved": "off",
421
412
  },
422
413
  }),
414
+
415
+ defineConfig({
416
+ /* semantic-release is only installed on demand during release, so the
417
+ * imports in this file would be unresolved in a regular build */
418
+ name: "@html-validate/eslint-config/semantic-release",
419
+ files: ["release.config.{js,mjs}"],
420
+ rules: {
421
+ "import-x/no-unresolved": "off",
422
+ },
423
+ }),
423
424
  ];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@html-validate/eslint-config",
3
- "version": "9.0.0",
3
+ "version": "9.1.0",
4
4
  "description": "Eslint sharable config used by the various HTML-validate packages",
5
5
  "keywords": [
6
6
  "eslint"
@@ -64,5 +64,5 @@
64
64
  "publishConfig": {
65
65
  "access": "public"
66
66
  },
67
- "gitHead": "7d4794ca48f5202204d7b5b63af83e07a7a0a55e"
67
+ "gitHead": "b36b832e7c711ac68973f4cd3340c9c11a0c7828"
68
68
  }