@html-eslint/eslint-plugin 0.35.0 → 0.35.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/lib/exports.ts +2 -0
- package/lib/index.js +6 -1
- package/lib/rules/attrs-newline.js +11 -7
- package/lib/rules/element-newline.js +25 -18
- package/lib/rules/id-naming-convention.js +10 -4
- package/lib/rules/indent/indent-level.js +1 -1
- package/lib/rules/indent/indent.js +26 -15
- package/lib/rules/lowercase.js +4 -4
- package/lib/rules/max-element-depth.js +8 -5
- package/lib/rules/no-abstract-roles.js +4 -4
- package/lib/rules/no-accesskey-attrs.js +4 -4
- package/lib/rules/no-aria-hidden-body.js +1 -1
- package/lib/rules/no-duplicate-attrs.js +4 -4
- package/lib/rules/no-duplicate-id.js +5 -5
- package/lib/rules/no-extra-spacing-attrs.js +18 -12
- package/lib/rules/no-extra-spacing-text.js +8 -5
- package/lib/rules/no-heading-inside-button.js +1 -1
- package/lib/rules/no-inline-styles.js +1 -1
- package/lib/rules/no-invalid-role.js +1 -1
- package/lib/rules/no-multiple-empty-lines.js +8 -5
- package/lib/rules/no-multiple-h1.js +2 -2
- package/lib/rules/no-nested-interactive.js +2 -2
- package/lib/rules/no-non-scalable-viewport.js +1 -1
- package/lib/rules/no-obsolete-tags.js +1 -1
- package/lib/rules/no-positive-tabindex.js +4 -4
- package/lib/rules/no-restricted-attr-values.js +5 -5
- package/lib/rules/no-restricted-attrs.js +8 -7
- package/lib/rules/no-script-style-type.js +4 -4
- package/lib/rules/no-skip-heading-levels.js +2 -2
- package/lib/rules/no-target-blank.js +1 -1
- package/lib/rules/no-trailing-spaces.js +3 -3
- package/lib/rules/prefer-https.js +5 -5
- package/lib/rules/quotes.js +7 -5
- package/lib/rules/require-attrs.js +7 -5
- package/lib/rules/require-button-type.js +1 -1
- package/lib/rules/require-closing-tags.js +6 -2
- package/lib/rules/require-doctype.js +1 -1
- package/lib/rules/require-explicit-size.js +8 -3
- package/lib/rules/require-form-method.js +1 -1
- package/lib/rules/require-frame-title.js +1 -1
- package/lib/rules/require-img-alt.js +9 -8
- package/lib/rules/require-input-label.js +2 -2
- package/lib/rules/require-lang.js +4 -7
- package/lib/rules/require-li-container.js +1 -1
- package/lib/rules/require-meta-charset.js +3 -3
- package/lib/rules/require-meta-description.js +3 -3
- package/lib/rules/require-meta-viewport.js +3 -3
- package/lib/rules/require-open-graph-protocol.js +6 -3
- package/lib/rules/require-title.js +4 -4
- package/lib/rules/sort-attrs.js +11 -11
- package/lib/rules/utils/node.js +23 -23
- package/lib/rules/utils/settings.js +3 -3
- package/lib/rules/utils/source-code.js +1 -1
- package/lib/rules/utils/visitors.js +1 -1
- package/lib/types/ast.ts +17 -0
- package/lib/types/{rule.d.ts → rule.ts} +41 -10
- package/package.json +12 -19
- package/types/exports.d.ts +3 -0
- package/types/exports.d.ts.map +1 -0
- package/types/index.d.ts +80 -5
- package/types/index.d.ts.map +1 -1
- package/types/rules/attrs-newline.d.ts +7 -3
- package/types/rules/attrs-newline.d.ts.map +1 -1
- package/types/rules/element-newline.d.ts +17 -11
- package/types/rules/element-newline.d.ts.map +1 -1
- package/types/rules/id-naming-convention.d.ts +10 -5
- package/types/rules/id-naming-convention.d.ts.map +1 -1
- package/types/rules/indent/indent-level.d.ts +2 -2
- package/types/rules/indent/indent-level.d.ts.map +1 -1
- package/types/rules/indent/indent.d.ts +15 -9
- package/types/rules/indent/indent.d.ts.map +1 -1
- package/types/rules/index.d.ts +64 -47
- package/types/rules/lowercase.d.ts +5 -5
- package/types/rules/lowercase.d.ts.map +1 -1
- package/types/rules/max-element-depth.d.ts +8 -5
- package/types/rules/max-element-depth.d.ts.map +1 -1
- package/types/rules/no-abstract-roles.d.ts +5 -5
- package/types/rules/no-abstract-roles.d.ts.map +1 -1
- package/types/rules/no-accesskey-attrs.d.ts +5 -5
- package/types/rules/no-accesskey-attrs.d.ts.map +1 -1
- package/types/rules/no-aria-hidden-body.d.ts +1 -1
- package/types/rules/no-aria-hidden-body.d.ts.map +1 -1
- package/types/rules/no-duplicate-attrs.d.ts +5 -5
- package/types/rules/no-duplicate-attrs.d.ts.map +1 -1
- package/types/rules/no-duplicate-id.d.ts +6 -6
- package/types/rules/no-duplicate-id.d.ts.map +1 -1
- package/types/rules/no-extra-spacing-attrs.d.ts +19 -13
- package/types/rules/no-extra-spacing-attrs.d.ts.map +1 -1
- package/types/rules/no-extra-spacing-text.d.ts +9 -6
- package/types/rules/no-extra-spacing-text.d.ts.map +1 -1
- package/types/rules/no-heading-inside-button.d.ts +1 -1
- package/types/rules/no-heading-inside-button.d.ts.map +1 -1
- package/types/rules/no-inline-styles.d.ts +1 -1
- package/types/rules/no-inline-styles.d.ts.map +1 -1
- package/types/rules/no-invalid-role.d.ts +1 -1
- package/types/rules/no-invalid-role.d.ts.map +1 -1
- package/types/rules/no-multiple-empty-lines.d.ts +8 -5
- package/types/rules/no-multiple-empty-lines.d.ts.map +1 -1
- package/types/rules/no-multiple-h1.d.ts +2 -2
- package/types/rules/no-multiple-h1.d.ts.map +1 -1
- package/types/rules/no-nested-interactive.d.ts +2 -2
- package/types/rules/no-nested-interactive.d.ts.map +1 -1
- package/types/rules/no-non-scalable-viewport.d.ts +1 -1
- package/types/rules/no-non-scalable-viewport.d.ts.map +1 -1
- package/types/rules/no-obsolete-tags.d.ts +1 -1
- package/types/rules/no-obsolete-tags.d.ts.map +1 -1
- package/types/rules/no-positive-tabindex.d.ts +4 -4
- package/types/rules/no-positive-tabindex.d.ts.map +1 -1
- package/types/rules/no-restricted-attr-values.d.ts +6 -6
- package/types/rules/no-restricted-attr-values.d.ts.map +1 -1
- package/types/rules/no-restricted-attrs.d.ts +6 -6
- package/types/rules/no-restricted-attrs.d.ts.map +1 -1
- package/types/rules/no-script-style-type.d.ts +4 -4
- package/types/rules/no-script-style-type.d.ts.map +1 -1
- package/types/rules/no-skip-heading-levels.d.ts +2 -2
- package/types/rules/no-skip-heading-levels.d.ts.map +1 -1
- package/types/rules/no-target-blank.d.ts +1 -1
- package/types/rules/no-target-blank.d.ts.map +1 -1
- package/types/rules/no-trailing-spaces.d.ts +3 -3
- package/types/rules/no-trailing-spaces.d.ts.map +1 -1
- package/types/rules/prefer-https.d.ts +5 -5
- package/types/rules/prefer-https.d.ts.map +1 -1
- package/types/rules/quotes.d.ts +7 -6
- package/types/rules/quotes.d.ts.map +1 -1
- package/types/rules/require-attrs.d.ts +6 -6
- package/types/rules/require-attrs.d.ts.map +1 -1
- package/types/rules/require-button-type.d.ts +1 -1
- package/types/rules/require-button-type.d.ts.map +1 -1
- package/types/rules/require-closing-tags.d.ts +7 -3
- package/types/rules/require-closing-tags.d.ts.map +1 -1
- package/types/rules/require-doctype.d.ts +1 -1
- package/types/rules/require-doctype.d.ts.map +1 -1
- package/types/rules/require-explicit-size.d.ts +8 -4
- package/types/rules/require-explicit-size.d.ts.map +1 -1
- package/types/rules/require-form-method.d.ts +1 -1
- package/types/rules/require-form-method.d.ts.map +1 -1
- package/types/rules/require-frame-title.d.ts +1 -1
- package/types/rules/require-frame-title.d.ts.map +1 -1
- package/types/rules/require-img-alt.d.ts +6 -3
- package/types/rules/require-img-alt.d.ts.map +1 -1
- package/types/rules/require-input-label.d.ts +3 -3
- package/types/rules/require-input-label.d.ts.map +1 -1
- package/types/rules/require-lang.d.ts +1 -1
- package/types/rules/require-lang.d.ts.map +1 -1
- package/types/rules/require-li-container.d.ts +1 -1
- package/types/rules/require-li-container.d.ts.map +1 -1
- package/types/rules/require-meta-charset.d.ts +4 -4
- package/types/rules/require-meta-charset.d.ts.map +1 -1
- package/types/rules/require-meta-description.d.ts +4 -4
- package/types/rules/require-meta-description.d.ts.map +1 -1
- package/types/rules/require-meta-viewport.d.ts +4 -4
- package/types/rules/require-meta-viewport.d.ts.map +1 -1
- package/types/rules/require-open-graph-protocol.d.ts +5 -4
- package/types/rules/require-open-graph-protocol.d.ts.map +1 -1
- package/types/rules/require-title.d.ts +5 -5
- package/types/rules/require-title.d.ts.map +1 -1
- package/types/rules/sort-attrs.d.ts +8 -5
- package/types/rules/sort-attrs.d.ts.map +1 -1
- package/types/rules/utils/node.d.ts +28 -28
- package/types/rules/utils/node.d.ts.map +1 -1
- package/types/rules/utils/settings.d.ts +3 -3
- package/types/rules/utils/settings.d.ts.map +1 -1
- package/types/rules/utils/source-code.d.ts +8 -3
- package/types/rules/utils/source-code.d.ts.map +1 -1
- package/types/rules/utils/visitors.d.ts +1 -1
- package/types/rules/utils/visitors.d.ts.map +1 -1
- package/types/types/ast.d.ts +16 -0
- package/types/types/ast.d.ts.map +1 -0
- package/types/types/index.d.ts +4 -0
- package/types/types/index.d.ts.map +1 -0
- package/types/types/rule.d.ts +97 -0
- package/types/types/rule.d.ts.map +1 -0
- package/types/types/settings.d.ts +13 -0
- package/types/types/settings.d.ts.map +1 -0
- package/lib/types/ast.d.ts +0 -213
- package/lib/types/{index.d.ts → index.ts} +1 -1
- /package/lib/types/{settings.d.ts → settings.ts} +0 -0
|
@@ -1,13 +1,16 @@
|
|
|
1
1
|
declare namespace _exports {
|
|
2
|
-
export {
|
|
2
|
+
export { CommentContent, Tag, Comment, Text, Line, Range, Option, RuleModule };
|
|
3
3
|
}
|
|
4
4
|
declare const _exports: RuleModule;
|
|
5
5
|
export = _exports;
|
|
6
|
-
type
|
|
7
|
-
type
|
|
8
|
-
type
|
|
9
|
-
type
|
|
10
|
-
type Text = import("../types").Text;
|
|
6
|
+
type CommentContent = import("@html-eslint/types").CommentContent;
|
|
7
|
+
type Tag = import("@html-eslint/types").Tag;
|
|
8
|
+
type Comment = import("@html-eslint/types").Comment;
|
|
9
|
+
type Text = import("@html-eslint/types").Text;
|
|
11
10
|
type Line = import("../types").Line;
|
|
12
11
|
type Range = import("eslint").AST.Range;
|
|
12
|
+
type Option = {
|
|
13
|
+
skip?: string[] | undefined;
|
|
14
|
+
};
|
|
15
|
+
type RuleModule = import("../types").RuleModule<[Option]>;
|
|
13
16
|
//# sourceMappingURL=no-extra-spacing-text.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"no-extra-spacing-text.d.ts","sourceRoot":"","sources":["../../lib/rules/no-extra-spacing-text.js"],"names":[],"mappings":";;;
|
|
1
|
+
{"version":3,"file":"no-extra-spacing-text.d.ts","sourceRoot":"","sources":["../../lib/rules/no-extra-spacing-text.js"],"names":[],"mappings":";;;wBAuBU,UAAU;;sBAtBN,OAAO,oBAAoB,EAAE,cAAc;WAC3C,OAAO,oBAAoB,EAAE,GAAG;eAChC,OAAO,oBAAoB,EAAE,OAAO;YACpC,OAAO,oBAAoB,EAAE,IAAI;YACjC,OAAO,UAAU,EAAE,IAAI;aACvB,OAAO,QAAQ,EAAE,GAAG,CAAC,KAAK;;;;kBAI1B,OAAO,UAAU,EAAE,UAAU,CAAC,CAAC,MAAM,CAAC,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"no-heading-inside-button.d.ts","sourceRoot":"","sources":["../../lib/rules/no-heading-inside-button.js"],"names":[],"mappings":";;;wBAcU,UAAU;;kBAbN,OAAO,UAAU,EAAE,UAAU"}
|
|
1
|
+
{"version":3,"file":"no-heading-inside-button.d.ts","sourceRoot":"","sources":["../../lib/rules/no-heading-inside-button.js"],"names":[],"mappings":";;;wBAcU,UAAU;;kBAbN,OAAO,UAAU,EAAE,UAAU,CAAC,EAAE,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"no-inline-styles.d.ts","sourceRoot":"","sources":["../../lib/rules/no-inline-styles.js"],"names":[],"mappings":";;;wBAYU,UAAU;;kBAXN,OAAO,UAAU,EAAE,UAAU"}
|
|
1
|
+
{"version":3,"file":"no-inline-styles.d.ts","sourceRoot":"","sources":["../../lib/rules/no-inline-styles.js"],"names":[],"mappings":";;;wBAYU,UAAU;;kBAXN,OAAO,UAAU,EAAE,UAAU,CAAC,EAAE,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"no-invalid-role.d.ts","sourceRoot":"","sources":["../../lib/rules/no-invalid-role.js"],"names":[],"mappings":";;;wBAkOU,UAAU;;kBAjON,OAAO,UAAU,EAAE,UAAU"}
|
|
1
|
+
{"version":3,"file":"no-invalid-role.d.ts","sourceRoot":"","sources":["../../lib/rules/no-invalid-role.js"],"names":[],"mappings":";;;wBAkOU,UAAU;;kBAjON,OAAO,UAAU,EAAE,UAAU,CAAC,EAAE,CAAC"}
|
|
@@ -1,11 +1,14 @@
|
|
|
1
1
|
declare namespace _exports {
|
|
2
|
-
export { AnyToken,
|
|
2
|
+
export { AnyToken, Document, CommentContent, Text, Option, RuleModule };
|
|
3
3
|
}
|
|
4
4
|
declare const _exports: RuleModule;
|
|
5
5
|
export = _exports;
|
|
6
6
|
type AnyToken = import("es-html-parser").AnyToken;
|
|
7
|
-
type
|
|
8
|
-
type
|
|
9
|
-
type
|
|
10
|
-
type
|
|
7
|
+
type Document = import("@html-eslint/types").Document;
|
|
8
|
+
type CommentContent = import("@html-eslint/types").CommentContent;
|
|
9
|
+
type Text = import("@html-eslint/types").Text;
|
|
10
|
+
type Option = {
|
|
11
|
+
max: number;
|
|
12
|
+
};
|
|
13
|
+
type RuleModule = import("../types").RuleModule<[Option]>;
|
|
11
14
|
//# sourceMappingURL=no-multiple-empty-lines.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"no-multiple-empty-lines.d.ts","sourceRoot":"","sources":["../../lib/rules/no-multiple-empty-lines.js"],"names":[],"mappings":";;;
|
|
1
|
+
{"version":3,"file":"no-multiple-empty-lines.d.ts","sourceRoot":"","sources":["../../lib/rules/no-multiple-empty-lines.js"],"names":[],"mappings":";;;wBA6BU,UAAU;;gBA5BN,OAAO,gBAAgB,EAAE,QAAQ;gBACjC,OAAO,oBAAoB,EAAE,QAAQ;sBACrC,OAAO,oBAAoB,EAAE,cAAc;YAC3C,OAAO,oBAAoB,EAAE,IAAI;;SAGjC,MAAM;;kBACN,OAAO,UAAU,EAAE,UAAU,CAAC,CAAC,MAAM,CAAC,CAAC"}
|
|
@@ -3,6 +3,6 @@ declare namespace _exports {
|
|
|
3
3
|
}
|
|
4
4
|
declare const _exports: RuleModule;
|
|
5
5
|
export = _exports;
|
|
6
|
-
type RuleModule = import("../types").RuleModule
|
|
7
|
-
type Tag = import("
|
|
6
|
+
type RuleModule = import("../types").RuleModule<[]>;
|
|
7
|
+
type Tag = import("@html-eslint/types").Tag;
|
|
8
8
|
//# sourceMappingURL=no-multiple-h1.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"no-multiple-h1.d.ts","sourceRoot":"","sources":["../../lib/rules/no-multiple-h1.js"],"names":[],"mappings":";;;wBAYU,UAAU;;kBAXN,OAAO,UAAU,EAAE,UAAU;
|
|
1
|
+
{"version":3,"file":"no-multiple-h1.d.ts","sourceRoot":"","sources":["../../lib/rules/no-multiple-h1.js"],"names":[],"mappings":";;;wBAYU,UAAU;;kBAXN,OAAO,UAAU,EAAE,UAAU,CAAC,EAAE,CAAC;WACjC,OAAO,oBAAoB,EAAE,GAAG"}
|
|
@@ -3,6 +3,6 @@ declare namespace _exports {
|
|
|
3
3
|
}
|
|
4
4
|
declare const _exports: RuleModule;
|
|
5
5
|
export = _exports;
|
|
6
|
-
type RuleModule = import("../types").RuleModule
|
|
7
|
-
type Tag = import("
|
|
6
|
+
type RuleModule = import("../types").RuleModule<[]>;
|
|
7
|
+
type Tag = import("@html-eslint/types").Tag;
|
|
8
8
|
//# sourceMappingURL=no-nested-interactive.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"no-nested-interactive.d.ts","sourceRoot":"","sources":["../../lib/rules/no-nested-interactive.js"],"names":[],"mappings":";;;wBAyDU,UAAU;;kBAxDN,OAAO,UAAU,EAAE,UAAU;
|
|
1
|
+
{"version":3,"file":"no-nested-interactive.d.ts","sourceRoot":"","sources":["../../lib/rules/no-nested-interactive.js"],"names":[],"mappings":";;;wBAyDU,UAAU;;kBAxDN,OAAO,UAAU,EAAE,UAAU,CAAC,EAAE,CAAC;WACjC,OAAO,oBAAoB,EAAE,GAAG"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"no-non-scalable-viewport.d.ts","sourceRoot":"","sources":["../../lib/rules/no-non-scalable-viewport.js"],"names":[],"mappings":";;;wBAYU,UAAU;;kBAXN,OAAO,UAAU,EAAE,UAAU"}
|
|
1
|
+
{"version":3,"file":"no-non-scalable-viewport.d.ts","sourceRoot":"","sources":["../../lib/rules/no-non-scalable-viewport.js"],"names":[],"mappings":";;;wBAYU,UAAU;;kBAXN,OAAO,UAAU,EAAE,UAAU,CAAC,EAAE,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"no-obsolete-tags.d.ts","sourceRoot":"","sources":["../../lib/rules/no-obsolete-tags.js"],"names":[],"mappings":";;;wBAcU,UAAU;;kBAbN,OAAO,UAAU,EAAE,UAAU"}
|
|
1
|
+
{"version":3,"file":"no-obsolete-tags.d.ts","sourceRoot":"","sources":["../../lib/rules/no-obsolete-tags.js"],"names":[],"mappings":";;;wBAcU,UAAU;;kBAbN,OAAO,UAAU,EAAE,UAAU,CAAC,EAAE,CAAC"}
|
|
@@ -3,8 +3,8 @@ declare namespace _exports {
|
|
|
3
3
|
}
|
|
4
4
|
declare const _exports: RuleModule;
|
|
5
5
|
export = _exports;
|
|
6
|
-
type RuleModule = import("../types").RuleModule
|
|
7
|
-
type Tag = import("
|
|
8
|
-
type StyleTag = import("
|
|
9
|
-
type ScriptTag = import("
|
|
6
|
+
type RuleModule = import("../types").RuleModule<[]>;
|
|
7
|
+
type Tag = import("@html-eslint/types").Tag;
|
|
8
|
+
type StyleTag = import("@html-eslint/types").StyleTag;
|
|
9
|
+
type ScriptTag = import("@html-eslint/types").ScriptTag;
|
|
10
10
|
//# sourceMappingURL=no-positive-tabindex.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"no-positive-tabindex.d.ts","sourceRoot":"","sources":["../../lib/rules/no-positive-tabindex.js"],"names":[],"mappings":";;;wBAgBU,UAAU;;kBAfN,OAAO,UAAU,EAAE,UAAU;
|
|
1
|
+
{"version":3,"file":"no-positive-tabindex.d.ts","sourceRoot":"","sources":["../../lib/rules/no-positive-tabindex.js"],"names":[],"mappings":";;;wBAgBU,UAAU;;kBAfN,OAAO,UAAU,EAAE,UAAU,CAAC,EAAE,CAAC;WACjC,OAAO,oBAAoB,EAAE,GAAG;gBAChC,OAAO,oBAAoB,EAAE,QAAQ;iBACrC,OAAO,oBAAoB,EAAE,SAAS"}
|
|
@@ -1,16 +1,16 @@
|
|
|
1
1
|
declare namespace _exports {
|
|
2
|
-
export {
|
|
2
|
+
export { StyleTag, Attribute, Tag, ScriptTag, Options, RuleModule };
|
|
3
3
|
}
|
|
4
4
|
declare const _exports: RuleModule;
|
|
5
5
|
export = _exports;
|
|
6
|
-
type
|
|
7
|
-
type
|
|
8
|
-
type
|
|
9
|
-
type
|
|
10
|
-
type ScriptTag = import("../types").ScriptTag;
|
|
6
|
+
type StyleTag = import("@html-eslint/types").StyleTag;
|
|
7
|
+
type Attribute = import("@html-eslint/types").Attribute;
|
|
8
|
+
type Tag = import("@html-eslint/types").Tag;
|
|
9
|
+
type ScriptTag = import("@html-eslint/types").ScriptTag;
|
|
11
10
|
type Options = {
|
|
12
11
|
attrPatterns: string[];
|
|
13
12
|
attrValuePatterns: string[];
|
|
14
13
|
message?: string;
|
|
15
14
|
}[];
|
|
15
|
+
type RuleModule = import("../types").RuleModule<Options>;
|
|
16
16
|
//# sourceMappingURL=no-restricted-attr-values.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"no-restricted-attr-values.d.ts","sourceRoot":"","sources":["../../lib/rules/no-restricted-attr-values.js"],"names":[],"mappings":";;;wBAiBU,UAAU;;
|
|
1
|
+
{"version":3,"file":"no-restricted-attr-values.d.ts","sourceRoot":"","sources":["../../lib/rules/no-restricted-attr-values.js"],"names":[],"mappings":";;;wBAiBU,UAAU;;gBAhBN,OAAO,oBAAoB,EAAE,QAAQ;iBACrC,OAAO,oBAAoB,EAAE,SAAS;WACtC,OAAO,oBAAoB,EAAE,GAAG;iBAChC,OAAO,oBAAoB,EAAE,SAAS;eACvC;IAAC,YAAY,EAAE,MAAM,EAAE,CAAC;IAAC,iBAAiB,EAAE,MAAM,EAAE,CAAC;IAAC,OAAO,CAAC,EAAE,MAAM,CAAA;CAAC,EAAE;kBACxE,OAAO,UAAU,EAAE,UAAU,CAAC,OAAO,CAAC"}
|
|
@@ -1,16 +1,16 @@
|
|
|
1
1
|
declare namespace _exports {
|
|
2
|
-
export {
|
|
2
|
+
export { StyleTag, Attribute, Tag, ScriptTag, Options, RuleModule };
|
|
3
3
|
}
|
|
4
4
|
declare const _exports: RuleModule;
|
|
5
5
|
export = _exports;
|
|
6
|
-
type
|
|
7
|
-
type
|
|
8
|
-
type
|
|
9
|
-
type
|
|
10
|
-
type ScriptTag = import("../types").ScriptTag;
|
|
6
|
+
type StyleTag = import("@html-eslint/types").StyleTag;
|
|
7
|
+
type Attribute = import("@html-eslint/types").Attribute;
|
|
8
|
+
type Tag = import("@html-eslint/types").Tag;
|
|
9
|
+
type ScriptTag = import("@html-eslint/types").ScriptTag;
|
|
11
10
|
type Options = {
|
|
12
11
|
tagPatterns: string[];
|
|
13
12
|
attrPatterns: string[];
|
|
14
13
|
message?: string;
|
|
15
14
|
}[];
|
|
15
|
+
type RuleModule = import("../types").RuleModule<Options>;
|
|
16
16
|
//# sourceMappingURL=no-restricted-attrs.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"no-restricted-attrs.d.ts","sourceRoot":"","sources":["../../lib/rules/no-restricted-attrs.js"],"names":[],"mappings":";;;
|
|
1
|
+
{"version":3,"file":"no-restricted-attrs.d.ts","sourceRoot":"","sources":["../../lib/rules/no-restricted-attrs.js"],"names":[],"mappings":";;;wBAmBU,UAAU;;gBAlBN,OAAO,oBAAoB,EAAE,QAAQ;iBACrC,OAAO,oBAAoB,EAAE,SAAS;WACtC,OAAO,oBAAoB,EAAE,GAAG;iBAChC,OAAO,oBAAoB,EAAE,SAAS;eACvC;IAAC,WAAW,EAAE,MAAM,EAAE,CAAC;IAAC,YAAY,EAAE,MAAM,EAAE,CAAC;IAAC,OAAO,CAAC,EAAE,MAAM,CAAA;CAAC,EAAE;kBAElE,OAAO,UAAU,EAAE,UAAU,CAAC,OAAO,CAAC"}
|
|
@@ -3,8 +3,8 @@ declare namespace _exports {
|
|
|
3
3
|
}
|
|
4
4
|
declare const _exports: RuleModule;
|
|
5
5
|
export = _exports;
|
|
6
|
-
type RuleModule = import("../types").RuleModule
|
|
7
|
-
type StyleTag = import("
|
|
8
|
-
type Tag = import("
|
|
9
|
-
type ScriptTag = import("
|
|
6
|
+
type RuleModule = import("../types").RuleModule<[]>;
|
|
7
|
+
type StyleTag = import("@html-eslint/types").StyleTag;
|
|
8
|
+
type Tag = import("@html-eslint/types").Tag;
|
|
9
|
+
type ScriptTag = import("@html-eslint/types").ScriptTag;
|
|
10
10
|
//# sourceMappingURL=no-script-style-type.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"no-script-style-type.d.ts","sourceRoot":"","sources":["../../lib/rules/no-script-style-type.js"],"names":[],"mappings":";;;wBAgBU,UAAU;;kBAfN,OAAO,UAAU,EAAE,UAAU;
|
|
1
|
+
{"version":3,"file":"no-script-style-type.d.ts","sourceRoot":"","sources":["../../lib/rules/no-script-style-type.js"],"names":[],"mappings":";;;wBAgBU,UAAU;;kBAfN,OAAO,UAAU,EAAE,UAAU,CAAC,EAAE,CAAC;gBACjC,OAAO,oBAAoB,EAAE,QAAQ;WACrC,OAAO,oBAAoB,EAAE,GAAG;iBAChC,OAAO,oBAAoB,EAAE,SAAS"}
|
|
@@ -3,6 +3,6 @@ declare namespace _exports {
|
|
|
3
3
|
}
|
|
4
4
|
declare const _exports: RuleModule;
|
|
5
5
|
export = _exports;
|
|
6
|
-
type RuleModule = import("../types").RuleModule
|
|
7
|
-
type Tag = import("
|
|
6
|
+
type RuleModule = import("../types").RuleModule<[]>;
|
|
7
|
+
type Tag = import("@html-eslint/types").Tag;
|
|
8
8
|
//# sourceMappingURL=no-skip-heading-levels.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"no-skip-heading-levels.d.ts","sourceRoot":"","sources":["../../lib/rules/no-skip-heading-levels.js"],"names":[],"mappings":";;;wBAYU,UAAU;;kBAXN,OAAO,UAAU,EAAE,UAAU;
|
|
1
|
+
{"version":3,"file":"no-skip-heading-levels.d.ts","sourceRoot":"","sources":["../../lib/rules/no-skip-heading-levels.js"],"names":[],"mappings":";;;wBAYU,UAAU;;kBAXN,OAAO,UAAU,EAAE,UAAU,CAAC,EAAE,CAAC;WACjC,OAAO,oBAAoB,EAAE,GAAG"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"no-target-blank.d.ts","sourceRoot":"","sources":["../../lib/rules/no-target-blank.js"],"names":[],"mappings":";;;wBAaU,UAAU;;kBAZN,OAAO,UAAU,EAAE,UAAU"}
|
|
1
|
+
{"version":3,"file":"no-target-blank.d.ts","sourceRoot":"","sources":["../../lib/rules/no-target-blank.js"],"names":[],"mappings":";;;wBAaU,UAAU;;kBAZN,OAAO,UAAU,EAAE,UAAU,CAAC,EAAE,CAAC"}
|
|
@@ -3,7 +3,7 @@ declare namespace _exports {
|
|
|
3
3
|
}
|
|
4
4
|
declare const _exports: RuleModule;
|
|
5
5
|
export = _exports;
|
|
6
|
-
type RuleModule = import("../types").RuleModule
|
|
7
|
-
type CommentContent = import("
|
|
8
|
-
type Text = import("
|
|
6
|
+
type RuleModule = import("../types").RuleModule<[]>;
|
|
7
|
+
type CommentContent = import("@html-eslint/types").CommentContent;
|
|
8
|
+
type Text = import("@html-eslint/types").Text;
|
|
9
9
|
//# sourceMappingURL=no-trailing-spaces.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"no-trailing-spaces.d.ts","sourceRoot":"","sources":["../../lib/rules/no-trailing-spaces.js"],"names":[],"mappings":";;;wBAwBU,UAAU;;kBAvBN,OAAO,UAAU,EAAE,UAAU;
|
|
1
|
+
{"version":3,"file":"no-trailing-spaces.d.ts","sourceRoot":"","sources":["../../lib/rules/no-trailing-spaces.js"],"names":[],"mappings":";;;wBAwBU,UAAU;;kBAvBN,OAAO,UAAU,EAAE,UAAU,CAAC,EAAE,CAAC;sBACjC,OAAO,oBAAoB,EAAE,cAAc;YAC3C,OAAO,oBAAoB,EAAE,IAAI"}
|
|
@@ -3,9 +3,9 @@ declare namespace _exports {
|
|
|
3
3
|
}
|
|
4
4
|
declare const _exports: RuleModule;
|
|
5
5
|
export = _exports;
|
|
6
|
-
type RuleModule = import("../types").RuleModule
|
|
7
|
-
type Tag = import("
|
|
8
|
-
type ScriptTag = import("
|
|
9
|
-
type Attribute = import("
|
|
10
|
-
type AttributeValue = import("
|
|
6
|
+
type RuleModule = import("../types").RuleModule<[]>;
|
|
7
|
+
type Tag = import("@html-eslint/types").Tag;
|
|
8
|
+
type ScriptTag = import("@html-eslint/types").ScriptTag;
|
|
9
|
+
type Attribute = import("@html-eslint/types").Attribute;
|
|
10
|
+
type AttributeValue = import("@html-eslint/types").AttributeValue;
|
|
11
11
|
//# sourceMappingURL=prefer-https.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"prefer-https.d.ts","sourceRoot":"","sources":["../../lib/rules/prefer-https.js"],"names":[],"mappings":";;;wBAmEU,UAAU;;kBAlEN,OAAO,UAAU,EAAE,UAAU;
|
|
1
|
+
{"version":3,"file":"prefer-https.d.ts","sourceRoot":"","sources":["../../lib/rules/prefer-https.js"],"names":[],"mappings":";;;wBAmEU,UAAU;;kBAlEN,OAAO,UAAU,EAAE,UAAU,CAAC,EAAE,CAAC;WACjC,OAAO,oBAAoB,EAAE,GAAG;iBAChC,OAAO,oBAAoB,EAAE,SAAS;iBACtC,OAAO,oBAAoB,EAAE,SAAS;sBACtC,OAAO,oBAAoB,EAAE,cAAc"}
|
package/types/rules/quotes.d.ts
CHANGED
|
@@ -1,12 +1,13 @@
|
|
|
1
1
|
declare namespace _exports {
|
|
2
|
-
export { Range,
|
|
2
|
+
export { Range, Attribute, Tag, ScriptTag, StyleTag, Option, RuleModule };
|
|
3
3
|
}
|
|
4
4
|
declare const _exports: RuleModule;
|
|
5
5
|
export = _exports;
|
|
6
6
|
type Range = import("eslint").AST.Range;
|
|
7
|
-
type
|
|
8
|
-
type
|
|
9
|
-
type
|
|
10
|
-
type
|
|
11
|
-
type
|
|
7
|
+
type Attribute = import("@html-eslint/types").Attribute;
|
|
8
|
+
type Tag = import("@html-eslint/types").Tag;
|
|
9
|
+
type ScriptTag = import("@html-eslint/types").ScriptTag;
|
|
10
|
+
type StyleTag = import("@html-eslint/types").StyleTag;
|
|
11
|
+
type Option = "single" | "double";
|
|
12
|
+
type RuleModule = import("../types").RuleModule<[Option]>;
|
|
12
13
|
//# sourceMappingURL=quotes.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"quotes.d.ts","sourceRoot":"","sources":["../../lib/rules/quotes.js"],"names":[],"mappings":";;;
|
|
1
|
+
{"version":3,"file":"quotes.d.ts","sourceRoot":"","sources":["../../lib/rules/quotes.js"],"names":[],"mappings":";;;wBA4BU,UAAU;;aA3BN,OAAO,QAAQ,EAAE,GAAG,CAAC,KAAK;iBAC1B,OAAO,oBAAoB,EAAE,SAAS;WACtC,OAAO,oBAAoB,EAAE,GAAG;iBAChC,OAAO,oBAAoB,EAAE,SAAS;gBACtC,OAAO,oBAAoB,EAAE,QAAQ;cAEtC,QAAQ,GAAG,QAAQ;kBAClB,OAAO,UAAU,EAAE,UAAU,CAAC,CAAC,MAAM,CAAC,CAAC"}
|
|
@@ -1,15 +1,15 @@
|
|
|
1
1
|
declare namespace _exports {
|
|
2
|
-
export {
|
|
2
|
+
export { Tag, ScriptTag, StyleTag, Option, RuleModule };
|
|
3
3
|
}
|
|
4
4
|
declare const _exports: RuleModule;
|
|
5
5
|
export = _exports;
|
|
6
|
-
type
|
|
7
|
-
type
|
|
8
|
-
type
|
|
9
|
-
type StyleTag = import("../types").StyleTag;
|
|
6
|
+
type Tag = import("@html-eslint/types").Tag;
|
|
7
|
+
type ScriptTag = import("@html-eslint/types").ScriptTag;
|
|
8
|
+
type StyleTag = import("@html-eslint/types").StyleTag;
|
|
10
9
|
type Option = {
|
|
11
10
|
tag: string;
|
|
12
11
|
attr: string;
|
|
13
|
-
value
|
|
12
|
+
value?: string | undefined;
|
|
14
13
|
};
|
|
14
|
+
type RuleModule = import("../types").RuleModule<Option[]>;
|
|
15
15
|
//# sourceMappingURL=require-attrs.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"require-attrs.d.ts","sourceRoot":"","sources":["../../lib/rules/require-attrs.js"],"names":[],"mappings":";;;
|
|
1
|
+
{"version":3,"file":"require-attrs.d.ts","sourceRoot":"","sources":["../../lib/rules/require-attrs.js"],"names":[],"mappings":";;;wBAwBU,UAAU;;WAvBN,OAAO,oBAAoB,EAAE,GAAG;iBAChC,OAAO,oBAAoB,EAAE,SAAS;gBACtC,OAAO,oBAAoB,EAAE,QAAQ;;SAGrC,MAAM;UACN,MAAM;;;kBAGN,OAAO,UAAU,EAAE,UAAU,CAAC,MAAM,EAAE,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"require-button-type.d.ts","sourceRoot":"","sources":["../../lib/rules/require-button-type.js"],"names":[],"mappings":";;;wBAgBU,UAAU;;kBAfN,OAAO,UAAU,EAAE,UAAU"}
|
|
1
|
+
{"version":3,"file":"require-button-type.d.ts","sourceRoot":"","sources":["../../lib/rules/require-button-type.js"],"names":[],"mappings":";;;wBAgBU,UAAU;;kBAfN,OAAO,UAAU,EAAE,UAAU,CAAC,EAAE,CAAC"}
|
|
@@ -1,8 +1,12 @@
|
|
|
1
1
|
declare namespace _exports {
|
|
2
|
-
export {
|
|
2
|
+
export { Tag, Option, RuleModule };
|
|
3
3
|
}
|
|
4
4
|
declare const _exports: RuleModule;
|
|
5
5
|
export = _exports;
|
|
6
|
-
type
|
|
7
|
-
type
|
|
6
|
+
type Tag = import("@html-eslint/types").Tag;
|
|
7
|
+
type Option = {
|
|
8
|
+
selfClosing?: "always" | "never" | undefined;
|
|
9
|
+
selfClosingCustomPatterns?: string[] | undefined;
|
|
10
|
+
};
|
|
11
|
+
type RuleModule = import("../types").RuleModule<[Option]>;
|
|
8
12
|
//# sourceMappingURL=require-closing-tags.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"require-closing-tags.d.ts","sourceRoot":"","sources":["../../lib/rules/require-closing-tags.js"],"names":[],"mappings":";;;
|
|
1
|
+
{"version":3,"file":"require-closing-tags.d.ts","sourceRoot":"","sources":["../../lib/rules/require-closing-tags.js"],"names":[],"mappings":";;;wBAqBU,UAAU;;WApBN,OAAO,oBAAoB,EAAE,GAAG;;;;;kBAKhC,OAAO,UAAU,EAAE,UAAU,CAAC,CAAC,MAAM,CAAC,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"require-doctype.d.ts","sourceRoot":"","sources":["../../lib/rules/require-doctype.js"],"names":[],"mappings":";;;wBAWU,UAAU;;kBAVN,OAAO,UAAU,EAAE,UAAU"}
|
|
1
|
+
{"version":3,"file":"require-doctype.d.ts","sourceRoot":"","sources":["../../lib/rules/require-doctype.js"],"names":[],"mappings":";;;wBAWU,UAAU;;kBAVN,OAAO,UAAU,EAAE,UAAU,CAAC,EAAE,CAAC"}
|
|
@@ -1,9 +1,13 @@
|
|
|
1
1
|
declare namespace _exports {
|
|
2
|
-
export {
|
|
2
|
+
export { Tag, AnyNode, Option, RuleModule };
|
|
3
3
|
}
|
|
4
4
|
declare const _exports: RuleModule;
|
|
5
5
|
export = _exports;
|
|
6
|
-
type
|
|
7
|
-
type
|
|
8
|
-
type
|
|
6
|
+
type Tag = import("@html-eslint/types").Tag;
|
|
7
|
+
type AnyNode = import("@html-eslint/types").AnyNode;
|
|
8
|
+
type Option = {
|
|
9
|
+
allowClass?: string[] | undefined;
|
|
10
|
+
allowId?: string[] | undefined;
|
|
11
|
+
};
|
|
12
|
+
type RuleModule = import("../types").RuleModule<[Option]>;
|
|
9
13
|
//# sourceMappingURL=require-explicit-size.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"require-explicit-size.d.ts","sourceRoot":"","sources":["../../lib/rules/require-explicit-size.js"],"names":[],"mappings":";;;
|
|
1
|
+
{"version":3,"file":"require-explicit-size.d.ts","sourceRoot":"","sources":["../../lib/rules/require-explicit-size.js"],"names":[],"mappings":";;;wBAuBU,UAAU;;WAtBN,OAAO,oBAAoB,EAAE,GAAG;eAChC,OAAO,oBAAoB,EAAE,OAAO;;;;;kBAKpC,OAAO,UAAU,EAAE,UAAU,CAAC,CAAC,MAAM,CAAC,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"require-form-method.d.ts","sourceRoot":"","sources":["../../lib/rules/require-form-method.js"],"names":[],"mappings":";;;wBAkBU,UAAU;;kBAjBN,OAAO,UAAU,EAAE,UAAU"}
|
|
1
|
+
{"version":3,"file":"require-form-method.d.ts","sourceRoot":"","sources":["../../lib/rules/require-form-method.js"],"names":[],"mappings":";;;wBAkBU,UAAU;;kBAjBN,OAAO,UAAU,EAAE,UAAU,CAAC,EAAE,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"require-frame-title.d.ts","sourceRoot":"","sources":["../../lib/rules/require-frame-title.js"],"names":[],"mappings":";;;wBAcU,UAAU;;kBAbN,OAAO,UAAU,EAAE,UAAU"}
|
|
1
|
+
{"version":3,"file":"require-frame-title.d.ts","sourceRoot":"","sources":["../../lib/rules/require-frame-title.js"],"names":[],"mappings":";;;wBAcU,UAAU;;kBAbN,OAAO,UAAU,EAAE,UAAU,CAAC,EAAE,CAAC"}
|
|
@@ -1,8 +1,11 @@
|
|
|
1
1
|
declare namespace _exports {
|
|
2
|
-
export {
|
|
2
|
+
export { Tag, Option, RuleModule };
|
|
3
3
|
}
|
|
4
4
|
declare const _exports: RuleModule;
|
|
5
5
|
export = _exports;
|
|
6
|
-
type
|
|
7
|
-
type
|
|
6
|
+
type Tag = import("@html-eslint/types").Tag;
|
|
7
|
+
type Option = {
|
|
8
|
+
substitute?: string[] | undefined;
|
|
9
|
+
};
|
|
10
|
+
type RuleModule = import("../types").RuleModule<[Option]>;
|
|
8
11
|
//# sourceMappingURL=require-img-alt.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"require-img-alt.d.ts","sourceRoot":"","sources":["../../lib/rules/require-img-alt.js"],"names":[],"mappings":";;;
|
|
1
|
+
{"version":3,"file":"require-img-alt.d.ts","sourceRoot":"","sources":["../../lib/rules/require-img-alt.js"],"names":[],"mappings":";;;wBAiBU,UAAU;;WAhBN,OAAO,oBAAoB,EAAE,GAAG;;;;kBAKhC,OAAO,UAAU,EAAE,UAAU,CAAC,CAAC,MAAM,CAAC,CAAC"}
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
declare namespace _exports {
|
|
2
|
-
export {
|
|
2
|
+
export { Tag, RuleModule };
|
|
3
3
|
}
|
|
4
4
|
declare const _exports: RuleModule;
|
|
5
5
|
export = _exports;
|
|
6
|
-
type
|
|
7
|
-
type
|
|
6
|
+
type Tag = import("@html-eslint/types").Tag;
|
|
7
|
+
type RuleModule = import("../types").RuleModule<[]>;
|
|
8
8
|
//# sourceMappingURL=require-input-label.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"require-input-label.d.ts","sourceRoot":"","sources":["../../lib/rules/require-input-label.js"],"names":[],"mappings":";;;wBAkBU,UAAU;;
|
|
1
|
+
{"version":3,"file":"require-input-label.d.ts","sourceRoot":"","sources":["../../lib/rules/require-input-label.js"],"names":[],"mappings":";;;wBAkBU,UAAU;;WAjBN,OAAO,oBAAoB,EAAE,GAAG;kBAChC,OAAO,UAAU,EAAE,UAAU,CAAC,EAAE,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"require-lang.d.ts","sourceRoot":"","sources":["../../lib/rules/require-lang.js"],"names":[],"mappings":";;;wBAcU,UAAU;;kBAbN,OAAO,UAAU,EAAE,UAAU"}
|
|
1
|
+
{"version":3,"file":"require-lang.d.ts","sourceRoot":"","sources":["../../lib/rules/require-lang.js"],"names":[],"mappings":";;;wBAcU,UAAU;;kBAbN,OAAO,UAAU,EAAE,UAAU,CAAC,EAAE,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"require-li-container.d.ts","sourceRoot":"","sources":["../../lib/rules/require-li-container.js"],"names":[],"mappings":";;;wBAcU,UAAU;;kBAbN,OAAO,UAAU,EAAE,UAAU"}
|
|
1
|
+
{"version":3,"file":"require-li-container.d.ts","sourceRoot":"","sources":["../../lib/rules/require-li-container.js"],"names":[],"mappings":";;;wBAcU,UAAU;;kBAbN,OAAO,UAAU,EAAE,UAAU,CAAC,EAAE,CAAC"}
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
declare namespace _exports {
|
|
2
|
-
export {
|
|
2
|
+
export { Tag, AnyNode, RuleModule };
|
|
3
3
|
}
|
|
4
4
|
declare const _exports: RuleModule;
|
|
5
5
|
export = _exports;
|
|
6
|
-
type
|
|
7
|
-
type
|
|
8
|
-
type
|
|
6
|
+
type Tag = import("@html-eslint/types").Tag;
|
|
7
|
+
type AnyNode = import("@html-eslint/types").AnyNode;
|
|
8
|
+
type RuleModule = import("../types").RuleModule<[]>;
|
|
9
9
|
//# sourceMappingURL=require-meta-charset.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"require-meta-charset.d.ts","sourceRoot":"","sources":["../../lib/rules/require-meta-charset.js"],"names":[],"mappings":";;;wBAwBU,UAAU;;
|
|
1
|
+
{"version":3,"file":"require-meta-charset.d.ts","sourceRoot":"","sources":["../../lib/rules/require-meta-charset.js"],"names":[],"mappings":";;;wBAwBU,UAAU;;WAvBN,OAAO,oBAAoB,EAAE,GAAG;eAChC,OAAO,oBAAoB,EAAE,OAAO;kBACpC,OAAO,UAAU,EAAE,UAAU,CAAC,EAAE,CAAC"}
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
declare namespace _exports {
|
|
2
|
-
export {
|
|
2
|
+
export { Tag, AnyNode, RuleModule };
|
|
3
3
|
}
|
|
4
4
|
declare const _exports: RuleModule;
|
|
5
5
|
export = _exports;
|
|
6
|
-
type
|
|
7
|
-
type
|
|
8
|
-
type
|
|
6
|
+
type Tag = import("@html-eslint/types").Tag;
|
|
7
|
+
type AnyNode = import("@html-eslint/types").AnyNode;
|
|
8
|
+
type RuleModule = import("../types").RuleModule<[]>;
|
|
9
9
|
//# sourceMappingURL=require-meta-description.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"require-meta-description.d.ts","sourceRoot":"","sources":["../../lib/rules/require-meta-description.js"],"names":[],"mappings":";;;wBAuBU,UAAU;;
|
|
1
|
+
{"version":3,"file":"require-meta-description.d.ts","sourceRoot":"","sources":["../../lib/rules/require-meta-description.js"],"names":[],"mappings":";;;wBAuBU,UAAU;;WAtBN,OAAO,oBAAoB,EAAE,GAAG;eAChC,OAAO,oBAAoB,EAAE,OAAO;kBACpC,OAAO,UAAU,EAAE,UAAU,CAAC,EAAE,CAAC"}
|