@html-eslint/eslint-plugin 0.42.0 → 0.43.0

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.
Files changed (189) hide show
  1. package/lib/languages/html-language.js +3 -3
  2. package/lib/languages/html-source-code.js +9 -11
  3. package/lib/languages/html-traversal-step.js +4 -3
  4. package/lib/rules/attrs-newline.js +3 -4
  5. package/lib/rules/element-newline.js +4 -14
  6. package/lib/rules/id-naming-convention.js +3 -6
  7. package/lib/rules/indent/indent-level.js +1 -1
  8. package/lib/rules/indent/indent.js +18 -23
  9. package/lib/rules/lowercase.js +3 -5
  10. package/lib/rules/max-element-depth.js +3 -5
  11. package/lib/rules/no-abstract-roles.js +3 -5
  12. package/lib/rules/no-accesskey-attrs.js +3 -5
  13. package/lib/rules/no-aria-hidden-body.js +2 -2
  14. package/lib/rules/no-aria-hidden-on-focusable.js +3 -3
  15. package/lib/rules/no-duplicate-attrs.js +3 -7
  16. package/lib/rules/no-duplicate-class.js +3 -6
  17. package/lib/rules/no-duplicate-id.js +6 -9
  18. package/lib/rules/no-duplicate-in-head.js +6 -9
  19. package/lib/rules/no-empty-headings.js +3 -4
  20. package/lib/rules/no-extra-spacing-attrs.js +4 -14
  21. package/lib/rules/no-extra-spacing-text.js +3 -9
  22. package/lib/rules/no-heading-inside-button.js +2 -2
  23. package/lib/rules/no-inline-styles.js +2 -2
  24. package/lib/rules/no-invalid-entity.js +3 -4
  25. package/lib/rules/no-invalid-role.js +2 -2
  26. package/lib/rules/no-multiple-empty-lines.js +10 -11
  27. package/lib/rules/no-multiple-h1.js +3 -3
  28. package/lib/rules/no-nested-interactive.js +3 -3
  29. package/lib/rules/no-non-scalable-viewport.js +2 -2
  30. package/lib/rules/no-obsolete-tags.js +2 -2
  31. package/lib/rules/no-positive-tabindex.js +3 -5
  32. package/lib/rules/no-restricted-attr-values.js +4 -6
  33. package/lib/rules/no-restricted-attrs.js +4 -6
  34. package/lib/rules/no-script-style-type.js +3 -5
  35. package/lib/rules/no-skip-heading-levels.js +3 -3
  36. package/lib/rules/no-target-blank.js +2 -2
  37. package/lib/rules/no-trailing-spaces.js +10 -9
  38. package/lib/rules/prefer-https.js +3 -6
  39. package/lib/rules/quotes.js +25 -10
  40. package/lib/rules/require-attrs.js +3 -8
  41. package/lib/rules/require-button-type.js +3 -4
  42. package/lib/rules/require-closing-tags.js +3 -3
  43. package/lib/rules/require-doctype.js +2 -2
  44. package/lib/rules/require-explicit-size.js +2 -5
  45. package/lib/rules/require-form-method.js +2 -2
  46. package/lib/rules/require-frame-title.js +2 -2
  47. package/lib/rules/require-img-alt.js +4 -4
  48. package/lib/rules/require-input-label.js +3 -3
  49. package/lib/rules/require-lang.js +2 -2
  50. package/lib/rules/require-li-container.js +2 -2
  51. package/lib/rules/require-meta-charset.js +3 -4
  52. package/lib/rules/require-meta-description.js +3 -4
  53. package/lib/rules/require-meta-viewport.js +3 -4
  54. package/lib/rules/require-open-graph-protocol.js +3 -6
  55. package/lib/rules/require-title.js +3 -5
  56. package/lib/rules/sort-attrs.js +4 -5
  57. package/lib/rules/use-baseline.js +3 -6
  58. package/lib/rules/utils/baseline.js +7 -4
  59. package/lib/rules/utils/node.js +11 -26
  60. package/lib/rules/utils/settings.js +4 -7
  61. package/lib/rules/utils/source-code.js +2 -2
  62. package/lib/rules/utils/template-literal.js +43 -0
  63. package/lib/rules/utils/visitors.js +6 -7
  64. package/package.json +6 -6
  65. package/types/languages/html-language.d.ts +0 -5
  66. package/types/languages/html-language.d.ts.map +1 -1
  67. package/types/languages/html-source-code.d.ts +13 -14
  68. package/types/languages/html-source-code.d.ts.map +1 -1
  69. package/types/languages/html-traversal-step.d.ts +5 -5
  70. package/types/languages/html-traversal-step.d.ts.map +1 -1
  71. package/types/rules/attrs-newline.d.ts +3 -4
  72. package/types/rules/attrs-newline.d.ts.map +1 -1
  73. package/types/rules/element-newline.d.ts +5 -13
  74. package/types/rules/element-newline.d.ts.map +1 -1
  75. package/types/rules/id-naming-convention.d.ts +3 -6
  76. package/types/rules/id-naming-convention.d.ts.map +1 -1
  77. package/types/rules/indent/indent-level.d.ts +3 -3
  78. package/types/rules/indent/indent-level.d.ts.map +1 -1
  79. package/types/rules/indent/indent.d.ts +5 -18
  80. package/types/rules/indent/indent.d.ts.map +1 -1
  81. package/types/rules/lowercase.d.ts +2 -8
  82. package/types/rules/lowercase.d.ts.map +1 -1
  83. package/types/rules/max-element-depth.d.ts +3 -6
  84. package/types/rules/max-element-depth.d.ts.map +1 -1
  85. package/types/rules/no-abstract-roles.d.ts +2 -8
  86. package/types/rules/no-abstract-roles.d.ts.map +1 -1
  87. package/types/rules/no-accesskey-attrs.d.ts +2 -8
  88. package/types/rules/no-accesskey-attrs.d.ts.map +1 -1
  89. package/types/rules/no-aria-hidden-body.d.ts +2 -5
  90. package/types/rules/no-aria-hidden-body.d.ts.map +1 -1
  91. package/types/rules/no-aria-hidden-on-focusable.d.ts +2 -6
  92. package/types/rules/no-aria-hidden-on-focusable.d.ts.map +1 -1
  93. package/types/rules/no-duplicate-attrs.d.ts +2 -10
  94. package/types/rules/no-duplicate-attrs.d.ts.map +1 -1
  95. package/types/rules/no-duplicate-class.d.ts +3 -7
  96. package/types/rules/no-duplicate-class.d.ts.map +1 -1
  97. package/types/rules/no-duplicate-id.d.ts +2 -9
  98. package/types/rules/no-duplicate-id.d.ts.map +1 -1
  99. package/types/rules/no-duplicate-in-head.d.ts +2 -9
  100. package/types/rules/no-duplicate-in-head.d.ts.map +1 -1
  101. package/types/rules/no-empty-headings.d.ts +2 -7
  102. package/types/rules/no-empty-headings.d.ts.map +1 -1
  103. package/types/rules/no-extra-spacing-attrs.d.ts +3 -14
  104. package/types/rules/no-extra-spacing-attrs.d.ts.map +1 -1
  105. package/types/rules/no-extra-spacing-text.d.ts +3 -9
  106. package/types/rules/no-extra-spacing-text.d.ts.map +1 -1
  107. package/types/rules/no-heading-inside-button.d.ts +2 -5
  108. package/types/rules/no-heading-inside-button.d.ts.map +1 -1
  109. package/types/rules/no-inline-styles.d.ts +2 -5
  110. package/types/rules/no-inline-styles.d.ts.map +1 -1
  111. package/types/rules/no-invalid-entity.d.ts +3 -5
  112. package/types/rules/no-invalid-entity.d.ts.map +1 -1
  113. package/types/rules/no-invalid-role.d.ts +2 -5
  114. package/types/rules/no-invalid-role.d.ts.map +1 -1
  115. package/types/rules/no-multiple-empty-lines.d.ts +3 -7
  116. package/types/rules/no-multiple-empty-lines.d.ts.map +1 -1
  117. package/types/rules/no-multiple-h1.d.ts +2 -6
  118. package/types/rules/no-multiple-h1.d.ts.map +1 -1
  119. package/types/rules/no-nested-interactive.d.ts +2 -6
  120. package/types/rules/no-nested-interactive.d.ts.map +1 -1
  121. package/types/rules/no-non-scalable-viewport.d.ts +2 -5
  122. package/types/rules/no-non-scalable-viewport.d.ts.map +1 -1
  123. package/types/rules/no-obsolete-tags.d.ts +2 -5
  124. package/types/rules/no-obsolete-tags.d.ts.map +1 -1
  125. package/types/rules/no-positive-tabindex.d.ts +2 -8
  126. package/types/rules/no-positive-tabindex.d.ts.map +1 -1
  127. package/types/rules/no-restricted-attr-values.d.ts +3 -7
  128. package/types/rules/no-restricted-attr-values.d.ts.map +1 -1
  129. package/types/rules/no-restricted-attrs.d.ts +3 -7
  130. package/types/rules/no-restricted-attrs.d.ts.map +1 -1
  131. package/types/rules/no-script-style-type.d.ts +2 -8
  132. package/types/rules/no-script-style-type.d.ts.map +1 -1
  133. package/types/rules/no-skip-heading-levels.d.ts +2 -6
  134. package/types/rules/no-skip-heading-levels.d.ts.map +1 -1
  135. package/types/rules/no-target-blank.d.ts +2 -5
  136. package/types/rules/no-target-blank.d.ts.map +1 -1
  137. package/types/rules/no-trailing-spaces.d.ts +2 -7
  138. package/types/rules/no-trailing-spaces.d.ts.map +1 -1
  139. package/types/rules/prefer-https.d.ts +2 -9
  140. package/types/rules/prefer-https.d.ts.map +1 -1
  141. package/types/rules/quotes.d.ts +7 -9
  142. package/types/rules/quotes.d.ts.map +1 -1
  143. package/types/rules/require-attrs.d.ts +3 -8
  144. package/types/rules/require-attrs.d.ts.map +1 -1
  145. package/types/rules/require-button-type.d.ts +2 -7
  146. package/types/rules/require-button-type.d.ts.map +1 -1
  147. package/types/rules/require-closing-tags.d.ts +3 -4
  148. package/types/rules/require-closing-tags.d.ts.map +1 -1
  149. package/types/rules/require-doctype.d.ts +2 -5
  150. package/types/rules/require-doctype.d.ts.map +1 -1
  151. package/types/rules/require-explicit-size.d.ts +3 -5
  152. package/types/rules/require-explicit-size.d.ts.map +1 -1
  153. package/types/rules/require-form-method.d.ts +2 -5
  154. package/types/rules/require-form-method.d.ts.map +1 -1
  155. package/types/rules/require-frame-title.d.ts +2 -5
  156. package/types/rules/require-frame-title.d.ts.map +1 -1
  157. package/types/rules/require-img-alt.d.ts +3 -4
  158. package/types/rules/require-img-alt.d.ts.map +1 -1
  159. package/types/rules/require-input-label.d.ts +2 -6
  160. package/types/rules/require-input-label.d.ts.map +1 -1
  161. package/types/rules/require-lang.d.ts +2 -5
  162. package/types/rules/require-lang.d.ts.map +1 -1
  163. package/types/rules/require-li-container.d.ts +2 -5
  164. package/types/rules/require-li-container.d.ts.map +1 -1
  165. package/types/rules/require-meta-charset.d.ts +2 -7
  166. package/types/rules/require-meta-charset.d.ts.map +1 -1
  167. package/types/rules/require-meta-description.d.ts +2 -7
  168. package/types/rules/require-meta-description.d.ts.map +1 -1
  169. package/types/rules/require-meta-viewport.d.ts +2 -7
  170. package/types/rules/require-meta-viewport.d.ts.map +1 -1
  171. package/types/rules/require-open-graph-protocol.d.ts +3 -5
  172. package/types/rules/require-open-graph-protocol.d.ts.map +1 -1
  173. package/types/rules/require-title.d.ts +2 -8
  174. package/types/rules/require-title.d.ts.map +1 -1
  175. package/types/rules/sort-attrs.d.ts +3 -6
  176. package/types/rules/sort-attrs.d.ts.map +1 -1
  177. package/types/rules/use-baseline.d.ts +3 -7
  178. package/types/rules/use-baseline.d.ts.map +1 -1
  179. package/types/rules/utils/baseline.d.ts.map +1 -1
  180. package/types/rules/utils/node.d.ts +25 -29
  181. package/types/rules/utils/node.d.ts.map +1 -1
  182. package/types/rules/utils/settings.d.ts +7 -9
  183. package/types/rules/utils/settings.d.ts.map +1 -1
  184. package/types/rules/utils/source-code.d.ts +4 -4
  185. package/types/rules/utils/source-code.d.ts.map +1 -1
  186. package/types/rules/utils/template-literal.d.ts +18 -0
  187. package/types/rules/utils/template-literal.d.ts.map +1 -0
  188. package/types/rules/utils/visitors.d.ts +4 -4
  189. package/types/rules/utils/visitors.d.ts.map +1 -1
@@ -1,15 +1,12 @@
1
1
  declare namespace _exports {
2
- export { Tag, ScriptTag, StyleTag, Option1, Option2, RuleModule };
2
+ export { Option1, Option2 };
3
3
  }
4
- declare const _exports: RuleModule;
4
+ declare const _exports: RuleModule<[Option1, Option2]>;
5
5
  export = _exports;
6
- type Tag = import("@html-eslint/types").Tag;
7
- type ScriptTag = import("@html-eslint/types").ScriptTag;
8
- type StyleTag = import("@html-eslint/types").StyleTag;
9
6
  type Option1 = "camelCase" | "snake_case" | "PascalCase" | "kebab-case" | "regex";
10
7
  type Option2 = {
11
8
  pattern: string;
12
9
  flags?: string | undefined;
13
10
  };
14
- type RuleModule = import("../types").RuleModule<[Option1, Option2]>;
11
+ import type { RuleModule } from "../types";
15
12
  //# sourceMappingURL=id-naming-convention.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"id-naming-convention.d.ts","sourceRoot":"","sources":["../../lib/rules/id-naming-convention.js"],"names":[],"mappings":";;;wBA4CU,UAAU;;WA3CN,OAAO,oBAAoB,EAAE,GAAG;iBAChC,OAAO,oBAAoB,EAAE,SAAS;gBACtC,OAAO,oBAAoB,EAAE,QAAQ;eAEtC,WAAW,GAAG,YAAY,GAAG,YAAY,GAAG,YAAY,GAAG,OAAO;;aAEjE,MAAM;;;kBAGN,OAAO,UAAU,EAAE,UAAU,CAAC,CAAC,OAAO,EAAE,OAAO,CAAC,CAAC"}
1
+ {"version":3,"file":"id-naming-convention.d.ts","sourceRoot":"","sources":["../../lib/rules/id-naming-convention.js"],"names":[],"mappings":";;;wBAyCU,WAAW,CAAC,OAAO,EAAE,OAAO,CAAC,CAAC;;eArC3B,WAAW,GAAG,YAAY,GAAG,YAAY,GAAG,YAAY,GAAG,OAAO;;aAEjE,MAAM;;;gCAJS,UAAU"}
@@ -1,6 +1,6 @@
1
1
  export = IndentLevel;
2
2
  /**
3
- * @typedef {import("@html-eslint/types").AnyNode} AnyNode
3
+ * @import {AnyNode} from "@html-eslint/types";
4
4
  * @typedef {{ [key in AnyNode['type']]?: number}} IncLevelOptions
5
5
  * @typedef {(node: AnyNode) => number} GetIncreasingLevel
6
6
  */
@@ -47,9 +47,9 @@ declare class IndentLevel {
47
47
  setBase(base: number): void;
48
48
  }
49
49
  declare namespace IndentLevel {
50
- export { AnyNode, IncLevelOptions, GetIncreasingLevel };
50
+ export { IncLevelOptions, GetIncreasingLevel };
51
51
  }
52
- type AnyNode = import("@html-eslint/types").AnyNode;
52
+ import type { AnyNode } from "@html-eslint/types";
53
53
  type IncLevelOptions = { [key in AnyNode["type"]]?: number; };
54
54
  type GetIncreasingLevel = (node: AnyNode) => number;
55
55
  //# sourceMappingURL=indent-level.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"indent-level.d.ts","sourceRoot":"","sources":["../../../lib/rules/indent/indent-level.js"],"names":[],"mappings":";AAAA;;;;GAIG;AAEH;IACE;;;OAGG;IACH,oBAFG;QAAmC,kBAAkB,EAA7C,kBAAkB;KAC5B,EAmBA;IAjBC;;;;OAIG;IACH,cAAe;IACf;;;;OAIG;IACH,kBAAkB;IAClB;;;OAGG;IACH,eAAuC;IAGzC;;OAEG;IACH,SAFa,MAAM,CAIlB;IAED;;OAEG;IACH,aAFW,OAAO,QAIjB;IAED;;OAEG;IACH,aAFW,OAAO,QAIjB;IAED;;OAEG;IACH,cAFW,MAAM,QAIhB;CACF;;;;eAzDY,OAAO,oBAAoB,EAAE,OAAO;uBACpC,GAAG,GAAG,IAAI,OAAO,CAAC,MAAM,CAAC,CAAC,CAAC,EAAE,MAAM,GAAC;0BACpC,CAAC,IAAI,EAAE,OAAO,KAAK,MAAM"}
1
+ {"version":3,"file":"indent-level.d.ts","sourceRoot":"","sources":["../../../lib/rules/indent/indent-level.js"],"names":[],"mappings":";AAAA;;;;GAIG;AAEH;IACE;;;OAGG;IACH,oBAFG;QAAmC,kBAAkB,EAA7C,kBAAkB;KAC5B,EAmBA;IAjBC;;;;OAIG;IACH,cAAe;IACf;;;;OAIG;IACH,kBAAkB;IAClB;;;OAGG;IACH,eAAuC;IAGzC;;OAEG;IACH,SAFa,MAAM,CAIlB;IAED;;OAEG;IACH,aAFW,OAAO,QAIjB;IAED;;OAEG;IACH,aAFW,OAAO,QAIjB;IAED;;OAEG;IACH,cAFW,MAAM,QAIhB;CACF;;;;6BAzDyB,oBAAoB;uBACjC,GAAG,GAAG,IAAI,OAAO,CAAC,MAAM,CAAC,CAAC,CAAC,EAAE,MAAM,GAAC;0BACpC,CAAC,IAAI,EAAE,OAAO,KAAK,MAAM"}
@@ -1,23 +1,8 @@
1
1
  declare namespace _exports {
2
- export { AnyNode, Line, Tag, RuleListener, Context, TemplateText, Token, SourceCode, Range, SourceLocation, TemplateLiteral, OpenTemplate, CloseTemplate, ScriptTag, StyleTag, AnyNodeOrLine, IndentType, MessageId, IndentOptionInfo, Option1, Option2, RuleModule };
2
+ export { AnyNodeOrLine, IndentType, MessageId, IndentOptionInfo, Option1, Option2 };
3
3
  }
4
- declare const _exports: RuleModule;
4
+ declare const _exports: RuleModule<[Option1, Option2]>;
5
5
  export = _exports;
6
- type AnyNode = import("@html-eslint/types").AnyNode;
7
- type Line = import("../../types").Line;
8
- type Tag = import("@html-eslint/types").Tag;
9
- type RuleListener = import("../../types").RuleListener;
10
- type Context = import("../../types").Context<any[]>;
11
- type TemplateText = import("@html-eslint/types").TemplateText;
12
- type Token = import("eslint").AST.Token;
13
- type SourceCode = import("eslint").SourceCode;
14
- type Range = import("eslint").AST.Range;
15
- type SourceLocation = import("eslint").AST.SourceLocation;
16
- type TemplateLiteral = import("@html-eslint/types").TemplateLiteral;
17
- type OpenTemplate = import("@html-eslint/types").OpenTemplate;
18
- type CloseTemplate = import("@html-eslint/types").CloseTemplate;
19
- type ScriptTag = import("@html-eslint/types").ScriptTag;
20
- type StyleTag = import("@html-eslint/types").StyleTag;
21
6
  type AnyNodeOrLine = AnyNode | Line;
22
7
  type IndentType = {
23
8
  TAB: "tab";
@@ -36,5 +21,7 @@ type Option2 = {
36
21
  Attribute?: number | undefined;
37
22
  tagChildrenIndent?: Record<string, number> | undefined;
38
23
  };
39
- type RuleModule = import("../../types").RuleModule<[Option1, Option2]>;
24
+ import type { RuleModule } from "../../types";
25
+ import type { AnyNode } from "@html-eslint/types";
26
+ import type { Line } from "../../types";
40
27
  //# sourceMappingURL=indent.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"indent.d.ts","sourceRoot":"","sources":["../../../lib/rules/indent/indent.js"],"names":[],"mappings":";;;wBAoEU,UAAU;;eAnEN,OAAO,oBAAoB,EAAE,OAAO;YACpC,OAAO,aAAa,EAAE,IAAI;WAC1B,OAAO,oBAAoB,EAAE,GAAG;oBAChC,OAAO,aAAa,EAAE,YAAY;eAClC,OAAO,aAAa,EAAE,OAAO,CAAC,GAAG,EAAE,CAAC;oBACpC,OAAO,oBAAoB,EAAE,YAAY;aACzC,OAAO,QAAQ,EAAE,GAAG,CAAC,KAAK;kBAC1B,OAAO,QAAQ,EAAE,UAAU;aAC3B,OAAO,QAAQ,EAAE,GAAG,CAAC,KAAK;sBAC1B,OAAO,QAAQ,EAAE,GAAG,CAAC,cAAc;uBACnC,OAAO,oBAAoB,EAAE,eAAe;oBAC5C,OAAO,oBAAoB,EAAE,YAAY;qBACzC,OAAO,oBAAoB,EAAE,aAAa;iBAC1C,OAAO,oBAAoB,EAAE,SAAS;gBACtC,OAAO,oBAAoB,EAAE,QAAQ;qBAEtC,OAAO,GAAG,IAAI;;SAEb,KAAK;WACL,OAAO;;;kBAEP,aAAa;;;gBAEb,UAAU,CAAC,KAAK,CAAC,GAAG,UAAU,CAAC,OAAO,CAAC;gBACvC,MAAM;gBACN,MAAM;;eAEP,KAAK,GAAG,MAAM;;;;;kBAKb,OAAO,aAAa,EAAE,UAAU,CAAC,CAAC,OAAO,EAAE,OAAO,CAAC,CAAC"}
1
+ {"version":3,"file":"indent.d.ts","sourceRoot":"","sources":["../../../lib/rules/indent/indent.js"],"names":[],"mappings":";;;wBAsDU,WAAW,CAAC,OAAO,EAAE,OAAO,CAAC,CAAC;;qBAjD3B,OAAO,GAAG,IAAI;;SAEb,KAAK;WACL,OAAO;;;kBAEP,aAAa;;;gBAEb,UAAU,CAAC,KAAK,CAAC,GAAG,UAAU,CAAC,OAAO,CAAC;gBACvC,MAAM;gBACN,MAAM;;eAEP,KAAK,GAAG,MAAM;;;;;gCAd+B,aAAa;6BADyC,oBAAoB;0BAC1E,aAAa"}
@@ -1,10 +1,4 @@
1
- declare namespace _exports {
2
- export { Tag, StyleTag, ScriptTag, RuleModule };
3
- }
4
- declare const _exports: RuleModule;
1
+ declare const _exports: RuleModule<[]>;
5
2
  export = _exports;
6
- type Tag = import("@html-eslint/types").Tag;
7
- type StyleTag = import("@html-eslint/types").StyleTag;
8
- type ScriptTag = import("@html-eslint/types").ScriptTag;
9
- type RuleModule = import("../types").RuleModule<[]>;
3
+ import type { RuleModule } from "../types";
10
4
  //# sourceMappingURL=lowercase.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"lowercase.d.ts","sourceRoot":"","sources":["../../lib/rules/lowercase.js"],"names":[],"mappings":";;;wBAkBU,UAAU;;WAjBN,OAAO,oBAAoB,EAAE,GAAG;gBAChC,OAAO,oBAAoB,EAAE,QAAQ;iBACrC,OAAO,oBAAoB,EAAE,SAAS;kBACtC,OAAO,UAAU,EAAE,UAAU,CAAC,EAAE,CAAC"}
1
+ {"version":3,"file":"lowercase.d.ts","sourceRoot":"","sources":["../../lib/rules/lowercase.js"],"names":[],"mappings":"wBAgBU,WAAW,EAAE,CAAC;;gCAdK,UAAU"}
@@ -1,13 +1,10 @@
1
1
  declare namespace _exports {
2
- export { Tag, StyleTag, ScriptTag, Option, RuleModule };
2
+ export { Option };
3
3
  }
4
- declare const _exports: RuleModule;
4
+ declare const _exports: RuleModule<[Option]>;
5
5
  export = _exports;
6
- type Tag = import("@html-eslint/types").Tag;
7
- type StyleTag = import("@html-eslint/types").StyleTag;
8
- type ScriptTag = import("@html-eslint/types").ScriptTag;
9
6
  type Option = {
10
7
  max?: number | undefined;
11
8
  };
12
- type RuleModule = import("../types").RuleModule<[Option]>;
9
+ import type { RuleModule } from "../types";
13
10
  //# sourceMappingURL=max-element-depth.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"max-element-depth.d.ts","sourceRoot":"","sources":["../../lib/rules/max-element-depth.js"],"names":[],"mappings":";;;wBAmBU,UAAU;;WAlBN,OAAO,oBAAoB,EAAE,GAAG;gBAChC,OAAO,oBAAoB,EAAE,QAAQ;iBACrC,OAAO,oBAAoB,EAAE,SAAS;;;;kBAItC,OAAO,UAAU,EAAE,UAAU,CAAC,CAAC,MAAM,CAAC,CAAC"}
1
+ {"version":3,"file":"max-element-depth.d.ts","sourceRoot":"","sources":["../../lib/rules/max-element-depth.js"],"names":[],"mappings":";;;wBAiBU,WAAW,CAAC,MAAM,CAAC,CAAC;;;;;gCAfD,UAAU"}
@@ -1,10 +1,4 @@
1
- declare namespace _exports {
2
- export { Tag, StyleTag, ScriptTag, RuleModule };
3
- }
4
- declare const _exports: RuleModule;
1
+ declare const _exports: RuleModule<[]>;
5
2
  export = _exports;
6
- type Tag = import("@html-eslint/types").Tag;
7
- type StyleTag = import("@html-eslint/types").StyleTag;
8
- type ScriptTag = import("@html-eslint/types").ScriptTag;
9
- type RuleModule = import("../types").RuleModule<[]>;
3
+ import type { RuleModule } from "../types";
10
4
  //# sourceMappingURL=no-abstract-roles.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"no-abstract-roles.d.ts","sourceRoot":"","sources":["../../lib/rules/no-abstract-roles.js"],"names":[],"mappings":";;;wBAgCU,UAAU;;WA/BN,OAAO,oBAAoB,EAAE,GAAG;gBAChC,OAAO,oBAAoB,EAAE,QAAQ;iBACrC,OAAO,oBAAoB,EAAE,SAAS;kBACtC,OAAO,UAAU,EAAE,UAAU,CAAC,EAAE,CAAC"}
1
+ {"version":3,"file":"no-abstract-roles.d.ts","sourceRoot":"","sources":["../../lib/rules/no-abstract-roles.js"],"names":[],"mappings":"wBA8BU,WAAW,EAAE,CAAC;;gCA5BK,UAAU"}
@@ -1,10 +1,4 @@
1
- declare namespace _exports {
2
- export { Tag, StyleTag, ScriptTag, RuleModule };
3
- }
4
- declare const _exports: RuleModule;
1
+ declare const _exports: RuleModule<[]>;
5
2
  export = _exports;
6
- type Tag = import("@html-eslint/types").Tag;
7
- type StyleTag = import("@html-eslint/types").StyleTag;
8
- type ScriptTag = import("@html-eslint/types").ScriptTag;
9
- type RuleModule = import("../types").RuleModule<[]>;
3
+ import type { RuleModule } from "../types";
10
4
  //# sourceMappingURL=no-accesskey-attrs.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"no-accesskey-attrs.d.ts","sourceRoot":"","sources":["../../lib/rules/no-accesskey-attrs.js"],"names":[],"mappings":";;;wBAiBU,UAAU;;WAhBN,OAAO,oBAAoB,EAAE,GAAG;gBAChC,OAAO,oBAAoB,EAAE,QAAQ;iBACrC,OAAO,oBAAoB,EAAE,SAAS;kBACtC,OAAO,UAAU,EAAE,UAAU,CAAC,EAAE,CAAC"}
1
+ {"version":3,"file":"no-accesskey-attrs.d.ts","sourceRoot":"","sources":["../../lib/rules/no-accesskey-attrs.js"],"names":[],"mappings":"wBAeU,WAAW,EAAE,CAAC;;gCAbK,UAAU"}
@@ -1,7 +1,4 @@
1
- declare namespace _exports {
2
- export { RuleModule };
3
- }
4
- declare const _exports: RuleModule;
1
+ declare const _exports: RuleModule<[]>;
5
2
  export = _exports;
6
- type RuleModule = import("../types").RuleModule<[]>;
3
+ import type { RuleModule } from "../types";
7
4
  //# sourceMappingURL=no-aria-hidden-body.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"no-aria-hidden-body.d.ts","sourceRoot":"","sources":["../../lib/rules/no-aria-hidden-body.js"],"names":[],"mappings":";;;wBAcU,UAAU;;kBAbN,OAAO,UAAU,EAAE,UAAU,CAAC,EAAE,CAAC"}
1
+ {"version":3,"file":"no-aria-hidden-body.d.ts","sourceRoot":"","sources":["../../lib/rules/no-aria-hidden-body.js"],"names":[],"mappings":"wBAcU,WAAW,EAAE,CAAC;;gCAbK,UAAU"}
@@ -1,8 +1,4 @@
1
- declare namespace _exports {
2
- export { RuleModule, Tag };
3
- }
4
- declare const _exports: RuleModule;
1
+ declare const _exports: RuleModule<[]>;
5
2
  export = _exports;
6
- type RuleModule = import("../types").RuleModule<[]>;
7
- type Tag = import("@html-eslint/types").Tag;
3
+ import type { RuleModule } from "../types";
8
4
  //# sourceMappingURL=no-aria-hidden-on-focusable.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"no-aria-hidden-on-focusable.d.ts","sourceRoot":"","sources":["../../lib/rules/no-aria-hidden-on-focusable.js"],"names":[],"mappings":";;;wBA8BU,UAAU;;kBA7BN,OAAO,UAAU,EAAE,UAAU,CAAC,EAAE,CAAC;WACjC,OAAO,oBAAoB,EAAE,GAAG"}
1
+ {"version":3,"file":"no-aria-hidden-on-focusable.d.ts","sourceRoot":"","sources":["../../lib/rules/no-aria-hidden-on-focusable.js"],"names":[],"mappings":"wBA8BU,WAAW,EAAE,CAAC;;gCA5BK,UAAU"}
@@ -1,12 +1,4 @@
1
- declare namespace _exports {
2
- export { Tag, StyleTag, ScriptTag, RuleModule, Attribute, SuggestionReportDescriptor };
3
- }
4
- declare const _exports: RuleModule;
1
+ declare const _exports: RuleModule<[]>;
5
2
  export = _exports;
6
- type Tag = import("@html-eslint/types").Tag;
7
- type StyleTag = import("@html-eslint/types").StyleTag;
8
- type ScriptTag = import("@html-eslint/types").ScriptTag;
9
- type RuleModule = import("../types").RuleModule<[]>;
10
- type Attribute = import("@html-eslint/types").Attribute;
11
- type SuggestionReportDescriptor = import("../types").SuggestionReportDescriptor;
3
+ import type { RuleModule } from "../types";
12
4
  //# sourceMappingURL=no-duplicate-attrs.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"no-duplicate-attrs.d.ts","sourceRoot":"","sources":["../../lib/rules/no-duplicate-attrs.js"],"names":[],"mappings":";;;wBAmBU,UAAU;;WAlBN,OAAO,oBAAoB,EAAE,GAAG;gBAChC,OAAO,oBAAoB,EAAE,QAAQ;iBACrC,OAAO,oBAAoB,EAAE,SAAS;kBACtC,OAAO,UAAU,EAAE,UAAU,CAAC,EAAE,CAAC;iBACjC,OAAO,oBAAoB,EAAE,SAAS;kCACtC,OAAO,UAAU,EAAE,0BAA0B"}
1
+ {"version":3,"file":"no-duplicate-attrs.d.ts","sourceRoot":"","sources":["../../lib/rules/no-duplicate-attrs.js"],"names":[],"mappings":"wBAeU,WAAW,EAAE,CAAC;;gCAbiC,UAAU"}
@@ -1,16 +1,12 @@
1
1
  declare namespace _exports {
2
- export { Tag, StyleTag, ScriptTag, AttributeValue, RuleModule, ClassInfo };
2
+ export { ClassInfo };
3
3
  }
4
- declare const _exports: RuleModule;
4
+ declare const _exports: RuleModule<[]>;
5
5
  export = _exports;
6
- type Tag = import("@html-eslint/types").Tag;
7
- type StyleTag = import("@html-eslint/types").StyleTag;
8
- type ScriptTag = import("@html-eslint/types").ScriptTag;
9
- type AttributeValue = import("@html-eslint/types").AttributeValue;
10
- type RuleModule = import("../types").RuleModule<[]>;
11
6
  type ClassInfo = {
12
7
  name: string;
13
8
  loc: import("@html-eslint/types").AnyNode["loc"];
14
9
  range: import("@html-eslint/types").AnyNode["range"];
15
10
  };
11
+ import type { RuleModule } from "../types";
16
12
  //# sourceMappingURL=no-duplicate-class.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"no-duplicate-class.d.ts","sourceRoot":"","sources":["../../lib/rules/no-duplicate-class.js"],"names":[],"mappings":";;;wBAsBU,UAAU;;WArBN,OAAO,oBAAoB,EAAE,GAAG;gBAChC,OAAO,oBAAoB,EAAE,QAAQ;iBACrC,OAAO,oBAAoB,EAAE,SAAS;sBACtC,OAAO,oBAAoB,EAAE,cAAc;kBAC3C,OAAO,UAAU,EAAE,UAAU,CAAC,EAAE,CAAC;;UAEjC,MAAM;SACN,OAAO,oBAAoB,EAAE,OAAO,CAAC,KAAK,CAAC;WAC3C,OAAO,oBAAoB,EAAE,OAAO,CAAC,OAAO,CAAC"}
1
+ {"version":3,"file":"no-duplicate-class.d.ts","sourceRoot":"","sources":["../../lib/rules/no-duplicate-class.js"],"names":[],"mappings":";;;wBAmBU,WAAW,EAAE,CAAC;;;UAfV,MAAM;SACN,OAAO,oBAAoB,EAAE,OAAO,CAAC,KAAK,CAAC;WAC3C,OAAO,oBAAoB,EAAE,OAAO,CAAC,OAAO,CAAC;;gCAJ9B,UAAU"}
@@ -1,11 +1,4 @@
1
- declare namespace _exports {
2
- export { Tag, StyleTag, ScriptTag, AttributeValue, RuleModule };
3
- }
4
- declare const _exports: RuleModule;
1
+ declare const _exports: RuleModule<[]>;
5
2
  export = _exports;
6
- type Tag = import("@html-eslint/types").Tag;
7
- type StyleTag = import("@html-eslint/types").StyleTag;
8
- type ScriptTag = import("@html-eslint/types").ScriptTag;
9
- type AttributeValue = import("@html-eslint/types").AttributeValue;
10
- type RuleModule = import("../types").RuleModule<[]>;
3
+ import type { RuleModule } from "../types";
11
4
  //# sourceMappingURL=no-duplicate-id.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"no-duplicate-id.d.ts","sourceRoot":"","sources":["../../lib/rules/no-duplicate-id.js"],"names":[],"mappings":";;;wBAuBU,UAAU;;WAtBN,OAAO,oBAAoB,EAAE,GAAG;gBAChC,OAAO,oBAAoB,EAAE,QAAQ;iBACrC,OAAO,oBAAoB,EAAE,SAAS;sBACtC,OAAO,oBAAoB,EAAE,cAAc;kBAC3C,OAAO,UAAU,EAAE,UAAU,CAAC,EAAE,CAAC"}
1
+ {"version":3,"file":"no-duplicate-id.d.ts","sourceRoot":"","sources":["../../lib/rules/no-duplicate-id.js"],"names":[],"mappings":"wBAoBU,WAAW,EAAE,CAAC;;gCAlBK,UAAU"}
@@ -1,11 +1,4 @@
1
- declare namespace _exports {
2
- export { Tag, StyleTag, ScriptTag, AttributeValue, RuleModule };
3
- }
4
- declare const _exports: RuleModule;
1
+ declare const _exports: RuleModule<[]>;
5
2
  export = _exports;
6
- type Tag = import("@html-eslint/types").Tag;
7
- type StyleTag = import("@html-eslint/types").StyleTag;
8
- type ScriptTag = import("@html-eslint/types").ScriptTag;
9
- type AttributeValue = import("@html-eslint/types").AttributeValue;
10
- type RuleModule = import("../types").RuleModule<[]>;
3
+ import type { RuleModule } from "../types";
11
4
  //# sourceMappingURL=no-duplicate-in-head.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"no-duplicate-in-head.d.ts","sourceRoot":"","sources":["../../lib/rules/no-duplicate-in-head.js"],"names":[],"mappings":";;;wBAgEU,UAAU;;WA/DN,OAAO,oBAAoB,EAAE,GAAG;gBAChC,OAAO,oBAAoB,EAAE,QAAQ;iBACrC,OAAO,oBAAoB,EAAE,SAAS;sBACtC,OAAO,oBAAoB,EAAE,cAAc;kBAC3C,OAAO,UAAU,EAAE,UAAU,CAAC,EAAE,CAAC"}
1
+ {"version":3,"file":"no-duplicate-in-head.d.ts","sourceRoot":"","sources":["../../lib/rules/no-duplicate-in-head.js"],"names":[],"mappings":"wBA6DU,WAAW,EAAE,CAAC;;gCA3DK,UAAU"}
@@ -1,9 +1,4 @@
1
- declare namespace _exports {
2
- export { RuleModule, Tag, Text };
3
- }
4
- declare const _exports: RuleModule;
1
+ declare const _exports: RuleModule<[]>;
5
2
  export = _exports;
6
- type RuleModule = import("../types").RuleModule<[]>;
7
- type Tag = import("@html-eslint/types").Tag;
8
- type Text = import("@html-eslint/types").Text;
3
+ import type { RuleModule } from "../types";
9
4
  //# sourceMappingURL=no-empty-headings.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"no-empty-headings.d.ts","sourceRoot":"","sources":["../../lib/rules/no-empty-headings.js"],"names":[],"mappings":";;;wBA0EU,UAAU;;kBAzEN,OAAO,UAAU,EAAE,UAAU,CAAC,EAAE,CAAC;WACjC,OAAO,oBAAoB,EAAE,GAAG;YAChC,OAAO,oBAAoB,EAAE,IAAI"}
1
+ {"version":3,"file":"no-empty-headings.d.ts","sourceRoot":"","sources":["../../lib/rules/no-empty-headings.js"],"names":[],"mappings":"wBAyEU,WAAW,EAAE,CAAC;;gCAvEK,UAAU"}
@@ -1,24 +1,13 @@
1
1
  declare namespace _exports {
2
- export { Attribute, OpenTagEnd, OpenScriptTagEnd, OpenStyleTagEnd, OpenScriptTagStart, OpenTagStart, OpenStyleTagStart, Tag, StyleTag, ScriptTag, AnyNode, Option, RuleModule };
2
+ export { Option };
3
3
  }
4
- declare const _exports: RuleModule;
4
+ declare const _exports: RuleModule<[Option]>;
5
5
  export = _exports;
6
- type Attribute = import("@html-eslint/types").Attribute;
7
- type OpenTagEnd = import("@html-eslint/types").OpenTagEnd;
8
- type OpenScriptTagEnd = import("@html-eslint/types").OpenScriptTagEnd;
9
- type OpenStyleTagEnd = import("@html-eslint/types").OpenStyleTagEnd;
10
- type OpenScriptTagStart = import("@html-eslint/types").OpenScriptTagStart;
11
- type OpenTagStart = import("@html-eslint/types").OpenTagStart;
12
- type OpenStyleTagStart = import("@html-eslint/types").OpenStyleTagStart;
13
- type Tag = import("@html-eslint/types").Tag;
14
- type StyleTag = import("@html-eslint/types").StyleTag;
15
- type ScriptTag = import("@html-eslint/types").ScriptTag;
16
- type AnyNode = import("@html-eslint/types").AnyNode;
17
6
  type Option = {
18
7
  disallowInAssignment?: boolean | undefined;
19
8
  disallowMissing?: boolean | undefined;
20
9
  disallowTabs?: boolean | undefined;
21
10
  enforceBeforeSelfClose?: boolean | undefined;
22
11
  };
23
- type RuleModule = import("../types").RuleModule<[Option]>;
12
+ import type { RuleModule } from "../types";
24
13
  //# sourceMappingURL=no-extra-spacing-attrs.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"no-extra-spacing-attrs.d.ts","sourceRoot":"","sources":["../../lib/rules/no-extra-spacing-attrs.js"],"names":[],"mappings":";;;wBA0CU,UAAU;;iBAzCN,OAAO,oBAAoB,EAAE,SAAS;kBACtC,OAAO,oBAAoB,EAAE,UAAU;wBACvC,OAAO,oBAAoB,EAAE,gBAAgB;uBAC7C,OAAO,oBAAoB,EAAE,eAAe;0BAC5C,OAAO,oBAAoB,EAAE,kBAAkB;oBAC/C,OAAO,oBAAoB,EAAE,YAAY;yBACzC,OAAO,oBAAoB,EAAE,iBAAiB;WAC9C,OAAO,oBAAoB,EAAE,GAAG;gBAChC,OAAO,oBAAoB,EAAE,QAAQ;iBACrC,OAAO,oBAAoB,EAAE,SAAS;eACtC,OAAO,oBAAoB,EAAE,OAAO;;;;;;;kBAOpC,OAAO,UAAU,EAAE,UAAU,CAAC,CAAC,MAAM,CAAC,CAAC"}
1
+ {"version":3,"file":"no-extra-spacing-attrs.d.ts","sourceRoot":"","sources":["../../lib/rules/no-extra-spacing-attrs.js"],"names":[],"mappings":";;;wBA+BU,WAAW,CAAC,MAAM,CAAC,CAAC;;;;;;;;gCA7BD,UAAU"}
@@ -1,16 +1,10 @@
1
1
  declare namespace _exports {
2
- export { CommentContent, Tag, Comment, Text, Line, Range, Option, RuleModule };
2
+ export { Option };
3
3
  }
4
- declare const _exports: RuleModule;
4
+ declare const _exports: RuleModule<[Option]>;
5
5
  export = _exports;
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;
10
- type Line = import("../types").Line;
11
- type Range = import("eslint").AST.Range;
12
6
  type Option = {
13
7
  skip?: string[] | undefined;
14
8
  };
15
- type RuleModule = import("../types").RuleModule<[Option]>;
9
+ import type { RuleModule } from "../types";
16
10
  //# 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":";;;wBAwBU,UAAU;;sBAvBN,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
+ {"version":3,"file":"no-extra-spacing-text.d.ts","sourceRoot":"","sources":["../../lib/rules/no-extra-spacing-text.js"],"names":[],"mappings":";;;wBAkBU,WAAW,CAAC,MAAM,CAAC,CAAC;;;;;gCAhBD,UAAU"}
@@ -1,7 +1,4 @@
1
- declare namespace _exports {
2
- export { RuleModule };
3
- }
4
- declare const _exports: RuleModule;
1
+ declare const _exports: RuleModule<[]>;
5
2
  export = _exports;
6
- type RuleModule = import("../types").RuleModule<[]>;
3
+ import type { RuleModule } from "../types";
7
4
  //# sourceMappingURL=no-heading-inside-button.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"no-heading-inside-button.d.ts","sourceRoot":"","sources":["../../lib/rules/no-heading-inside-button.js"],"names":[],"mappings":";;;wBAgBU,UAAU;;kBAfN,OAAO,UAAU,EAAE,UAAU,CAAC,EAAE,CAAC"}
1
+ {"version":3,"file":"no-heading-inside-button.d.ts","sourceRoot":"","sources":["../../lib/rules/no-heading-inside-button.js"],"names":[],"mappings":"wBAgBU,WAAW,EAAE,CAAC;;gCAfK,UAAU"}
@@ -1,7 +1,4 @@
1
- declare namespace _exports {
2
- export { RuleModule };
3
- }
4
- declare const _exports: RuleModule;
1
+ declare const _exports: RuleModule<[]>;
5
2
  export = _exports;
6
- type RuleModule = import("../types").RuleModule<[]>;
3
+ import type { RuleModule } from "../types";
7
4
  //# sourceMappingURL=no-inline-styles.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"no-inline-styles.d.ts","sourceRoot":"","sources":["../../lib/rules/no-inline-styles.js"],"names":[],"mappings":";;;wBAcU,UAAU;;kBAbN,OAAO,UAAU,EAAE,UAAU,CAAC,EAAE,CAAC"}
1
+ {"version":3,"file":"no-inline-styles.d.ts","sourceRoot":"","sources":["../../lib/rules/no-inline-styles.js"],"names":[],"mappings":"wBAcU,WAAW,EAAE,CAAC;;gCAbK,UAAU"}
@@ -1,13 +1,11 @@
1
1
  declare namespace _exports {
2
- export { RuleModule, SuggestionReportDescriptor, Text, EntityData };
2
+ export { EntityData };
3
3
  }
4
- declare const _exports: RuleModule;
4
+ declare const _exports: RuleModule<[]>;
5
5
  export = _exports;
6
- type RuleModule = import("../types").RuleModule<[]>;
7
- type SuggestionReportDescriptor = import("../types").SuggestionReportDescriptor;
8
- type Text = import("@html-eslint/types").Text;
9
6
  type EntityData = {
10
7
  codepoints: number[];
11
8
  characters: string;
12
9
  };
10
+ import type { RuleModule } from "../types";
13
11
  //# sourceMappingURL=no-invalid-entity.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"no-invalid-entity.d.ts","sourceRoot":"","sources":["../../lib/rules/no-invalid-entity.js"],"names":[],"mappings":";;;wBAyBU,UAAU;;kBAxBN,OAAO,UAAU,EAAE,UAAU,CAAC,EAAE,CAAC;kCACjC,OAAO,UAAU,EAAE,0BAA0B;YAC7C,OAAO,oBAAoB,EAAE,IAAI;;gBAMjC,MAAM,EAAE;gBACR,MAAM"}
1
+ {"version":3,"file":"no-invalid-entity.d.ts","sourceRoot":"","sources":["../../lib/rules/no-invalid-entity.js"],"names":[],"mappings":";;;wBAwBU,WAAW,EAAE,CAAC;;;gBAhBV,MAAM,EAAE;gBACR,MAAM;;gCARS,UAAU"}
@@ -1,7 +1,4 @@
1
- declare namespace _exports {
2
- export { RuleModule };
3
- }
4
- declare const _exports: RuleModule;
1
+ declare const _exports: RuleModule<[]>;
5
2
  export = _exports;
6
- type RuleModule = import("../types").RuleModule<[]>;
3
+ import type { RuleModule } from "../types";
7
4
  //# sourceMappingURL=no-invalid-role.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"no-invalid-role.d.ts","sourceRoot":"","sources":["../../lib/rules/no-invalid-role.js"],"names":[],"mappings":";;;wBAqOU,UAAU;;kBApON,OAAO,UAAU,EAAE,UAAU,CAAC,EAAE,CAAC"}
1
+ {"version":3,"file":"no-invalid-role.d.ts","sourceRoot":"","sources":["../../lib/rules/no-invalid-role.js"],"names":[],"mappings":"wBAqOU,WAAW,EAAE,CAAC;;gCApOK,UAAU"}
@@ -1,14 +1,10 @@
1
1
  declare namespace _exports {
2
- export { AnyToken, Document, CommentContent, Text, Option, RuleModule };
2
+ export { Option };
3
3
  }
4
- declare const _exports: RuleModule;
4
+ declare const _exports: RuleModule<[Option]>;
5
5
  export = _exports;
6
- type AnyToken = import("@html-eslint/types").AnyToken;
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
6
  type Option = {
11
7
  max: number;
12
8
  };
13
- type RuleModule = import("../types").RuleModule<[Option]>;
9
+ import type { RuleModule } from "../types";
14
10
  //# 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":";;;wBA8BU,UAAU;;gBA7BN,OAAO,oBAAoB,EAAE,QAAQ;gBACrC,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"}
1
+ {"version":3,"file":"no-multiple-empty-lines.d.ts","sourceRoot":"","sources":["../../lib/rules/no-multiple-empty-lines.js"],"names":[],"mappings":";;;wBA2BU,WAAW,CAAC,MAAM,CAAC,CAAC;;;SAtBhB,MAAM;;gCAHS,UAAU"}
@@ -1,8 +1,4 @@
1
- declare namespace _exports {
2
- export { RuleModule, Tag };
3
- }
4
- declare const _exports: RuleModule;
1
+ declare const _exports: RuleModule<[]>;
5
2
  export = _exports;
6
- type RuleModule = import("../types").RuleModule<[]>;
7
- type Tag = import("@html-eslint/types").Tag;
3
+ import type { RuleModule } from "../types";
8
4
  //# 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":";;;wBAaU,UAAU;;kBAZN,OAAO,UAAU,EAAE,UAAU,CAAC,EAAE,CAAC;WACjC,OAAO,oBAAoB,EAAE,GAAG"}
1
+ {"version":3,"file":"no-multiple-h1.d.ts","sourceRoot":"","sources":["../../lib/rules/no-multiple-h1.js"],"names":[],"mappings":"wBAaU,WAAW,EAAE,CAAC;;gCAXK,UAAU"}
@@ -1,8 +1,4 @@
1
- declare namespace _exports {
2
- export { RuleModule, Tag };
3
- }
4
- declare const _exports: RuleModule;
1
+ declare const _exports: RuleModule<[]>;
5
2
  export = _exports;
6
- type RuleModule = import("../types").RuleModule<[]>;
7
- type Tag = import("@html-eslint/types").Tag;
3
+ import type { RuleModule } from "../types";
8
4
  //# 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":";;;wBA0DU,UAAU;;kBAzDN,OAAO,UAAU,EAAE,UAAU,CAAC,EAAE,CAAC;WACjC,OAAO,oBAAoB,EAAE,GAAG"}
1
+ {"version":3,"file":"no-nested-interactive.d.ts","sourceRoot":"","sources":["../../lib/rules/no-nested-interactive.js"],"names":[],"mappings":"wBA0DU,WAAW,EAAE,CAAC;;gCAxDK,UAAU"}
@@ -1,7 +1,4 @@
1
- declare namespace _exports {
2
- export { RuleModule };
3
- }
4
- declare const _exports: RuleModule;
1
+ declare const _exports: RuleModule<[]>;
5
2
  export = _exports;
6
- type RuleModule = import("../types").RuleModule<[]>;
3
+ import type { RuleModule } from "../types";
7
4
  //# sourceMappingURL=no-non-scalable-viewport.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"no-non-scalable-viewport.d.ts","sourceRoot":"","sources":["../../lib/rules/no-non-scalable-viewport.js"],"names":[],"mappings":";;;wBAaU,UAAU;;kBAZN,OAAO,UAAU,EAAE,UAAU,CAAC,EAAE,CAAC"}
1
+ {"version":3,"file":"no-non-scalable-viewport.d.ts","sourceRoot":"","sources":["../../lib/rules/no-non-scalable-viewport.js"],"names":[],"mappings":"wBAaU,WAAW,EAAE,CAAC;;gCAZK,UAAU"}
@@ -1,7 +1,4 @@
1
- declare namespace _exports {
2
- export { RuleModule };
3
- }
4
- declare const _exports: RuleModule;
1
+ declare const _exports: RuleModule<[]>;
5
2
  export = _exports;
6
- type RuleModule = import("../types").RuleModule<[]>;
3
+ import type { RuleModule } from "../types";
7
4
  //# sourceMappingURL=no-obsolete-tags.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"no-obsolete-tags.d.ts","sourceRoot":"","sources":["../../lib/rules/no-obsolete-tags.js"],"names":[],"mappings":";;;wBAeU,UAAU;;kBAdN,OAAO,UAAU,EAAE,UAAU,CAAC,EAAE,CAAC"}
1
+ {"version":3,"file":"no-obsolete-tags.d.ts","sourceRoot":"","sources":["../../lib/rules/no-obsolete-tags.js"],"names":[],"mappings":"wBAeU,WAAW,EAAE,CAAC;;gCAdK,UAAU"}
@@ -1,10 +1,4 @@
1
- declare namespace _exports {
2
- export { RuleModule, Tag, StyleTag, ScriptTag };
3
- }
4
- declare const _exports: RuleModule;
1
+ declare const _exports: RuleModule<[]>;
5
2
  export = _exports;
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;
3
+ import type { RuleModule } from "../types";
10
4
  //# 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":";;;wBAiBU,UAAU;;kBAhBN,OAAO,UAAU,EAAE,UAAU,CAAC,EAAE,CAAC;WACjC,OAAO,oBAAoB,EAAE,GAAG;gBAChC,OAAO,oBAAoB,EAAE,QAAQ;iBACrC,OAAO,oBAAoB,EAAE,SAAS"}
1
+ {"version":3,"file":"no-positive-tabindex.d.ts","sourceRoot":"","sources":["../../lib/rules/no-positive-tabindex.js"],"names":[],"mappings":"wBAeU,WAAW,EAAE,CAAC;;gCAbK,UAAU"}
@@ -1,16 +1,12 @@
1
1
  declare namespace _exports {
2
- export { StyleTag, Attribute, Tag, ScriptTag, Options, RuleModule };
2
+ export { Options };
3
3
  }
4
- declare const _exports: RuleModule;
4
+ declare const _exports: RuleModule<Options>;
5
5
  export = _exports;
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;
10
6
  type Options = {
11
7
  attrPatterns: string[];
12
8
  attrValuePatterns: string[];
13
9
  message?: string;
14
10
  }[];
15
- type RuleModule = import("../types").RuleModule<Options>;
11
+ import type { RuleModule } from "../types";
16
12
  //# 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":";;;wBAkBU,UAAU;;gBAjBN,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
+ {"version":3,"file":"no-restricted-attr-values.d.ts","sourceRoot":"","sources":["../../lib/rules/no-restricted-attr-values.js"],"names":[],"mappings":";;;wBAeU,WAAW,OAAO,CAAC;;eAZhB;IAAC,YAAY,EAAE,MAAM,EAAE,CAAC;IAAC,iBAAiB,EAAE,MAAM,EAAE,CAAC;IAAC,OAAO,CAAC,EAAE,MAAM,CAAA;CAAC,EAAE;gCADzD,UAAU"}