@zthun/janitor-htmlhint-config 19.2.0 → 19.2.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.
- package/dist/index.cjs +9 -2
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +8 -4
- package/dist/index.js.map +1 -1
- package/package.json +4 -4
package/dist/index.cjs
CHANGED
|
@@ -1,4 +1,11 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
1
|
+
'use strict';
|
|
2
|
+
|
|
3
|
+
/**
|
|
4
|
+
* HTMLHint doesn't export it's rule set.
|
|
5
|
+
*
|
|
6
|
+
* This is the definition of it's Rules that are
|
|
7
|
+
* now exported
|
|
8
|
+
*/ const config = {};
|
|
9
|
+
|
|
3
10
|
module.exports = config;
|
|
4
11
|
//# sourceMappingURL=index.cjs.map
|
package/dist/index.cjs.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.cjs","sources":["../src/index.mts"],"sourcesContent":["/**\n * HTMLHint doesn't export it's rule set.\n *\n * This is the definition of it's Rules that are\n * now exported\n */\nexport interface RuleSet {\n \"alt-require\"?: boolean;\n \"attr-lowercase\"?: boolean | Array<string | RegExp>;\n \"attr-no-duplication\"?: boolean;\n \"attr-no-unnecessary-whitespace\"?: boolean;\n \"attr-sorted\"?: boolean;\n \"attr-unsafe-chars\"?: boolean;\n \"attr-value-double-quotes\"?: boolean;\n \"attr-value-not-empty\"?: boolean;\n \"attr-value-single-quotes\"?: boolean;\n \"attr-whitespace\"?: boolean;\n \"doctype-first\"?: boolean;\n \"doctype-html5\"?: boolean;\n \"empty-tag-not-self-closed\"?: boolean;\n \"head-script-disabled\"?: boolean;\n \"href-abs-or-rel\"?: \"abs\" | \"rel\";\n \"id-class-ad-disabled\"?: boolean;\n \"id-class-value\"?:\n | \"underline\"\n | \"dash\"\n | \"hump\"\n | { regId: RegExp; message: string };\n \"id-unique\"?: boolean;\n \"inline-script-disabled\"?: boolean;\n \"inline-style-disabled\"?: boolean;\n \"input-requires-label\"?: boolean;\n \"script-disabled\"?: boolean;\n \"space-tab-mixed-disabled\"?:\n | boolean\n | \"space\"\n | \"space1\"\n | \"space2\"\n | \"space3\"\n | \"space4\"\n | \"space5\"\n | \"space6\"\n | \"space7\"\n | \"space8\"\n | \"tab\";\n \"spec-char-escape\"?: boolean;\n \"src-not-empty\"?: boolean;\n \"style-disabled\"?: boolean;\n \"tag-pair\"?: boolean;\n \"tag-self-close\"?: boolean;\n \"tagname-lowercase\"?: boolean;\n \"tagname-specialchars\"?: boolean;\n \"tags-check\"?: { [tagName: string]: Record<string, unknown> };\n \"title-require\"?: boolean;\n}\n\nconst config: RuleSet = {};\nexport default config;\n"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"index.cjs","sources":["../src/index.mts"],"sourcesContent":["/**\n * HTMLHint doesn't export it's rule set.\n *\n * This is the definition of it's Rules that are\n * now exported\n */\nexport interface RuleSet {\n \"alt-require\"?: boolean;\n \"attr-lowercase\"?: boolean | Array<string | RegExp>;\n \"attr-no-duplication\"?: boolean;\n \"attr-no-unnecessary-whitespace\"?: boolean;\n \"attr-sorted\"?: boolean;\n \"attr-unsafe-chars\"?: boolean;\n \"attr-value-double-quotes\"?: boolean;\n \"attr-value-not-empty\"?: boolean;\n \"attr-value-single-quotes\"?: boolean;\n \"attr-whitespace\"?: boolean;\n \"doctype-first\"?: boolean;\n \"doctype-html5\"?: boolean;\n \"empty-tag-not-self-closed\"?: boolean;\n \"head-script-disabled\"?: boolean;\n \"href-abs-or-rel\"?: \"abs\" | \"rel\";\n \"id-class-ad-disabled\"?: boolean;\n \"id-class-value\"?:\n | \"underline\"\n | \"dash\"\n | \"hump\"\n | { regId: RegExp; message: string };\n \"id-unique\"?: boolean;\n \"inline-script-disabled\"?: boolean;\n \"inline-style-disabled\"?: boolean;\n \"input-requires-label\"?: boolean;\n \"script-disabled\"?: boolean;\n \"space-tab-mixed-disabled\"?:\n | boolean\n | \"space\"\n | \"space1\"\n | \"space2\"\n | \"space3\"\n | \"space4\"\n | \"space5\"\n | \"space6\"\n | \"space7\"\n | \"space8\"\n | \"tab\";\n \"spec-char-escape\"?: boolean;\n \"src-not-empty\"?: boolean;\n \"style-disabled\"?: boolean;\n \"tag-pair\"?: boolean;\n \"tag-self-close\"?: boolean;\n \"tagname-lowercase\"?: boolean;\n \"tagname-specialchars\"?: boolean;\n \"tags-check\"?: { [tagName: string]: Record<string, unknown> };\n \"title-require\"?: boolean;\n}\n\nconst config: RuleSet = {};\nexport default config;\n"],"names":["config"],"mappings":";;AAAA;;;;;IAwDA,MAAMA,SAAkB;;;;"}
|
package/dist/index.js
CHANGED
|
@@ -1,5 +1,9 @@
|
|
|
1
|
-
|
|
2
|
-
export
|
|
3
|
-
|
|
4
|
-
|
|
1
|
+
/**
|
|
2
|
+
* HTMLHint doesn't export it's rule set.
|
|
3
|
+
*
|
|
4
|
+
* This is the definition of it's Rules that are
|
|
5
|
+
* now exported
|
|
6
|
+
*/ const config = {};
|
|
7
|
+
|
|
8
|
+
export { config as default };
|
|
5
9
|
//# sourceMappingURL=index.js.map
|
package/dist/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sources":["../src/index.mts"],"sourcesContent":["/**\n * HTMLHint doesn't export it's rule set.\n *\n * This is the definition of it's Rules that are\n * now exported\n */\nexport interface RuleSet {\n \"alt-require\"?: boolean;\n \"attr-lowercase\"?: boolean | Array<string | RegExp>;\n \"attr-no-duplication\"?: boolean;\n \"attr-no-unnecessary-whitespace\"?: boolean;\n \"attr-sorted\"?: boolean;\n \"attr-unsafe-chars\"?: boolean;\n \"attr-value-double-quotes\"?: boolean;\n \"attr-value-not-empty\"?: boolean;\n \"attr-value-single-quotes\"?: boolean;\n \"attr-whitespace\"?: boolean;\n \"doctype-first\"?: boolean;\n \"doctype-html5\"?: boolean;\n \"empty-tag-not-self-closed\"?: boolean;\n \"head-script-disabled\"?: boolean;\n \"href-abs-or-rel\"?: \"abs\" | \"rel\";\n \"id-class-ad-disabled\"?: boolean;\n \"id-class-value\"?:\n | \"underline\"\n | \"dash\"\n | \"hump\"\n | { regId: RegExp; message: string };\n \"id-unique\"?: boolean;\n \"inline-script-disabled\"?: boolean;\n \"inline-style-disabled\"?: boolean;\n \"input-requires-label\"?: boolean;\n \"script-disabled\"?: boolean;\n \"space-tab-mixed-disabled\"?:\n | boolean\n | \"space\"\n | \"space1\"\n | \"space2\"\n | \"space3\"\n | \"space4\"\n | \"space5\"\n | \"space6\"\n | \"space7\"\n | \"space8\"\n | \"tab\";\n \"spec-char-escape\"?: boolean;\n \"src-not-empty\"?: boolean;\n \"style-disabled\"?: boolean;\n \"tag-pair\"?: boolean;\n \"tag-self-close\"?: boolean;\n \"tagname-lowercase\"?: boolean;\n \"tagname-specialchars\"?: boolean;\n \"tags-check\"?: { [tagName: string]: Record<string, unknown> };\n \"title-require\"?: boolean;\n}\n\nconst config: RuleSet = {};\nexport default config;\n"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"index.js","sources":["../src/index.mts"],"sourcesContent":["/**\n * HTMLHint doesn't export it's rule set.\n *\n * This is the definition of it's Rules that are\n * now exported\n */\nexport interface RuleSet {\n \"alt-require\"?: boolean;\n \"attr-lowercase\"?: boolean | Array<string | RegExp>;\n \"attr-no-duplication\"?: boolean;\n \"attr-no-unnecessary-whitespace\"?: boolean;\n \"attr-sorted\"?: boolean;\n \"attr-unsafe-chars\"?: boolean;\n \"attr-value-double-quotes\"?: boolean;\n \"attr-value-not-empty\"?: boolean;\n \"attr-value-single-quotes\"?: boolean;\n \"attr-whitespace\"?: boolean;\n \"doctype-first\"?: boolean;\n \"doctype-html5\"?: boolean;\n \"empty-tag-not-self-closed\"?: boolean;\n \"head-script-disabled\"?: boolean;\n \"href-abs-or-rel\"?: \"abs\" | \"rel\";\n \"id-class-ad-disabled\"?: boolean;\n \"id-class-value\"?:\n | \"underline\"\n | \"dash\"\n | \"hump\"\n | { regId: RegExp; message: string };\n \"id-unique\"?: boolean;\n \"inline-script-disabled\"?: boolean;\n \"inline-style-disabled\"?: boolean;\n \"input-requires-label\"?: boolean;\n \"script-disabled\"?: boolean;\n \"space-tab-mixed-disabled\"?:\n | boolean\n | \"space\"\n | \"space1\"\n | \"space2\"\n | \"space3\"\n | \"space4\"\n | \"space5\"\n | \"space6\"\n | \"space7\"\n | \"space8\"\n | \"tab\";\n \"spec-char-escape\"?: boolean;\n \"src-not-empty\"?: boolean;\n \"style-disabled\"?: boolean;\n \"tag-pair\"?: boolean;\n \"tag-self-close\"?: boolean;\n \"tagname-lowercase\"?: boolean;\n \"tagname-specialchars\"?: boolean;\n \"tags-check\"?: { [tagName: string]: Record<string, unknown> };\n \"title-require\"?: boolean;\n}\n\nconst config: RuleSet = {};\nexport default config;\n"],"names":["config"],"mappings":"AAAA;;;;;IAwDA,MAAMA,SAAkB;;;;"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@zthun/janitor-htmlhint-config",
|
|
3
|
-
"version": "19.2.
|
|
3
|
+
"version": "19.2.2",
|
|
4
4
|
"description": "A shared configuration for htmlhint for @zthun scoped projects.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"htmlhint",
|
|
@@ -28,8 +28,8 @@
|
|
|
28
28
|
"dist"
|
|
29
29
|
],
|
|
30
30
|
"devDependencies": {
|
|
31
|
-
"@zthun/janitor-build-config": "^19.2.
|
|
32
|
-
"htmlhint": "^1.
|
|
31
|
+
"@zthun/janitor-build-config": "^19.2.2",
|
|
32
|
+
"htmlhint": "^1.6.3",
|
|
33
33
|
"vite": "^6.3.5"
|
|
34
34
|
},
|
|
35
35
|
"peerDependencies": {
|
|
@@ -39,5 +39,5 @@
|
|
|
39
39
|
"access": "public"
|
|
40
40
|
},
|
|
41
41
|
"author": "Anthony Bonta",
|
|
42
|
-
"gitHead": "
|
|
42
|
+
"gitHead": "28f5ca31a2e299e343c3fd25163befa971f6a5e9"
|
|
43
43
|
}
|