@html-validate/eslint-config 7.1.0 → 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/index.mjs CHANGED
@@ -373,6 +373,15 @@ export default [
373
373
  },
374
374
  }),
375
375
 
376
+ defineConfig({
377
+ name: "@html-validate/eslint-config/node20",
378
+ files: ["eslint.config.mjs"],
379
+ rules: {
380
+ /* it flags import.meta.dirname as unspported, we're dropping node20 very soon so adding this for now */
381
+ "n/no-unsupported-features/node-builtins": "off",
382
+ },
383
+ }),
384
+
376
385
  defineConfig({
377
386
  /* ensure all of these patterns are linted */
378
387
  name: "@html-validate/eslint-config/extensions",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@html-validate/eslint-config",
3
- "version": "7.1.0",
3
+ "version": "7.1.1",
4
4
  "description": "Eslint sharable config used by the various HTML-validate packages",
5
5
  "keywords": [
6
6
  "eslint"
@@ -65,5 +65,5 @@
65
65
  "publishConfig": {
66
66
  "access": "public"
67
67
  },
68
- "gitHead": "5596843fc38b328425dea2b592b82e3dc5c0b696"
68
+ "gitHead": "ecff54fa0ac230b338f3918781238f013a2f1088"
69
69
  }