@html-validate/eslint-config 6.17.2 → 6.17.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.
package/index.mjs CHANGED
@@ -108,7 +108,7 @@ export default [
108
108
  "unicorn/escape-case": "off", // typically not useful for this organisation
109
109
  "unicorn/expiring-todo-comments": "off", // could be useful later
110
110
  "unicorn/explicit-length-check": ["error", { "non-zero": "greater-than" }],
111
- "unicorn/filename-case": ["error", { case: "kebabCase" }], // enforce kebab-case in filenames
111
+ "unicorn/filename-case": ["error", { case: "kebabCase", ignore: ["^Gruntfile.js$"] }], // enforce kebab-case in filenames
112
112
  "unicorn/import-style": "off", // off for now
113
113
  "unicorn/isolated-functions": "error",
114
114
  "unicorn/new-for-builtins": "error",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@html-validate/eslint-config",
3
- "version": "6.17.2",
3
+ "version": "6.17.3",
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": "c34d7db57f7a7db9befe947602ace75bd26855a4"
68
+ "gitHead": "d2fb442e87ea821011a231e42fe7dbb32c7f43d7"
69
69
  }