@html-validate/eslint-config 9.4.3 → 9.4.5
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/dist/cli.mjs +1 -1
- package/dist/cli.mjs.map +1 -1
- package/index.mjs +3 -2
- package/package.json +2 -2
package/index.mjs
CHANGED
|
@@ -105,6 +105,7 @@ export default [
|
|
|
105
105
|
allowList: {
|
|
106
106
|
/* widely used in the html-validate projects */
|
|
107
107
|
MetaData: true,
|
|
108
|
+
MetaDataTable: true,
|
|
108
109
|
},
|
|
109
110
|
},
|
|
110
111
|
],
|
|
@@ -125,7 +126,7 @@ export default [
|
|
|
125
126
|
"error",
|
|
126
127
|
{
|
|
127
128
|
case: "kebabCase",
|
|
128
|
-
ignore: ["^__(fixtures|mocks|snapshots)__$", "^Gruntfile.js$"],
|
|
129
|
+
ignore: ["^__(fixtures|mocks|snapshots|tests)__$", "^Gruntfile.js$"],
|
|
129
130
|
},
|
|
130
131
|
],
|
|
131
132
|
"unicorn/import-style": "off", // off for now
|
|
@@ -175,7 +176,7 @@ export default [
|
|
|
175
176
|
"unicorn/no-static-only-class": "off",
|
|
176
177
|
"unicorn/no-thenable": "off",
|
|
177
178
|
"unicorn/no-this-assignment": "error",
|
|
178
|
-
"unicorn/no-this-outside-of-class": "
|
|
179
|
+
"unicorn/no-this-outside-of-class": "off", // disagree somewhat with the rule, flags stateful objects
|
|
179
180
|
"unicorn/no-typeof-undefined": "error",
|
|
180
181
|
"unicorn/no-unnecessary-array-flat-depth": "error",
|
|
181
182
|
"unicorn/no-unnecessary-array-splice-count": "error",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@html-validate/eslint-config",
|
|
3
|
-
"version": "9.4.
|
|
3
|
+
"version": "9.4.5",
|
|
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": "
|
|
68
|
+
"gitHead": "2de5b90b9ed678468fb03a2195ebc931eebd28f5"
|
|
69
69
|
}
|