@html-eslint/eslint-plugin 0.31.1 → 0.33.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 (135) hide show
  1. package/lib/rules/attrs-newline.js +3 -5
  2. package/lib/rules/element-newline.js +11 -9
  3. package/lib/rules/id-naming-convention.js +5 -5
  4. package/lib/rules/indent/indent.js +121 -69
  5. package/lib/rules/index.js +20 -0
  6. package/lib/rules/lowercase.js +7 -8
  7. package/lib/rules/max-element-depth.js +96 -0
  8. package/lib/rules/no-abstract-roles.js +4 -4
  9. package/lib/rules/no-accesskey-attrs.js +4 -4
  10. package/lib/rules/no-duplicate-attrs.js +4 -4
  11. package/lib/rules/no-duplicate-id.js +7 -7
  12. package/lib/rules/no-extra-spacing-attrs.js +14 -14
  13. package/lib/rules/no-extra-spacing-text.js +9 -10
  14. package/lib/rules/no-heading-inside-button.js +54 -0
  15. package/lib/rules/no-inline-styles.js +0 -1
  16. package/lib/rules/no-invalid-role.js +287 -0
  17. package/lib/rules/no-multiple-empty-lines.js +5 -5
  18. package/lib/rules/no-multiple-h1.js +2 -2
  19. package/lib/rules/no-nested-interactive.js +120 -0
  20. package/lib/rules/no-positive-tabindex.js +4 -4
  21. package/lib/rules/no-restricted-attr-values.js +6 -6
  22. package/lib/rules/no-restricted-attrs.js +6 -6
  23. package/lib/rules/no-script-style-type.js +4 -4
  24. package/lib/rules/no-skip-heading-levels.js +2 -2
  25. package/lib/rules/no-trailing-spaces.js +3 -3
  26. package/lib/rules/prefer-https.js +106 -0
  27. package/lib/rules/quotes.js +8 -8
  28. package/lib/rules/require-attrs.js +14 -6
  29. package/lib/rules/require-closing-tags.js +4 -4
  30. package/lib/rules/require-explicit-size.js +122 -0
  31. package/lib/rules/require-form-method.js +81 -0
  32. package/lib/rules/require-img-alt.js +2 -3
  33. package/lib/rules/require-input-label.js +77 -0
  34. package/lib/rules/require-meta-charset.js +3 -3
  35. package/lib/rules/require-meta-description.js +3 -3
  36. package/lib/rules/require-meta-viewport.js +3 -3
  37. package/lib/rules/require-open-graph-protocol.js +3 -3
  38. package/lib/rules/require-title.js +5 -5
  39. package/lib/rules/sort-attrs.js +12 -12
  40. package/lib/rules/utils/node.js +72 -32
  41. package/lib/rules/utils/settings.js +2 -2
  42. package/lib/rules/utils/visitors.js +1 -1
  43. package/lib/types/ast.d.ts +204 -0
  44. package/lib/types/index.d.ts +3 -0
  45. package/lib/types/rule.d.ts +83 -0
  46. package/lib/types/settings.ts +13 -0
  47. package/package.json +4 -4
  48. package/types/rules/attrs-newline.d.ts +2 -3
  49. package/types/rules/attrs-newline.d.ts.map +1 -1
  50. package/types/rules/element-newline.d.ts +8 -9
  51. package/types/rules/element-newline.d.ts.map +1 -1
  52. package/types/rules/id-naming-convention.d.ts +4 -4
  53. package/types/rules/id-naming-convention.d.ts.map +1 -1
  54. package/types/rules/indent/indent.d.ts +12 -5
  55. package/types/rules/indent/indent.d.ts.map +1 -1
  56. package/types/rules/index.d.ts +8 -0
  57. package/types/rules/lowercase.d.ts +4 -5
  58. package/types/rules/lowercase.d.ts.map +1 -1
  59. package/types/rules/max-element-depth.d.ts +10 -0
  60. package/types/rules/max-element-depth.d.ts.map +1 -0
  61. package/types/rules/no-abstract-roles.d.ts +4 -4
  62. package/types/rules/no-abstract-roles.d.ts.map +1 -1
  63. package/types/rules/no-accesskey-attrs.d.ts +4 -4
  64. package/types/rules/no-accesskey-attrs.d.ts.map +1 -1
  65. package/types/rules/no-duplicate-attrs.d.ts +4 -4
  66. package/types/rules/no-duplicate-attrs.d.ts.map +1 -1
  67. package/types/rules/no-duplicate-id.d.ts +5 -5
  68. package/types/rules/no-duplicate-id.d.ts.map +1 -1
  69. package/types/rules/no-extra-spacing-attrs.d.ts +11 -11
  70. package/types/rules/no-extra-spacing-attrs.d.ts.map +1 -1
  71. package/types/rules/no-extra-spacing-text.d.ts +7 -8
  72. package/types/rules/no-extra-spacing-text.d.ts.map +1 -1
  73. package/types/rules/no-heading-inside-button.d.ts +7 -0
  74. package/types/rules/no-heading-inside-button.d.ts.map +1 -0
  75. package/types/rules/no-inline-styles.d.ts +1 -2
  76. package/types/rules/no-inline-styles.d.ts.map +1 -1
  77. package/types/rules/no-invalid-role.d.ts +7 -0
  78. package/types/rules/no-invalid-role.d.ts.map +1 -0
  79. package/types/rules/no-multiple-empty-lines.d.ts +5 -5
  80. package/types/rules/no-multiple-empty-lines.d.ts.map +1 -1
  81. package/types/rules/no-multiple-h1.d.ts +2 -2
  82. package/types/rules/no-multiple-h1.d.ts.map +1 -1
  83. package/types/rules/no-nested-interactive.d.ts +8 -0
  84. package/types/rules/no-nested-interactive.d.ts.map +1 -0
  85. package/types/rules/no-positive-tabindex.d.ts +4 -4
  86. package/types/rules/no-positive-tabindex.d.ts.map +1 -1
  87. package/types/rules/no-restricted-attr-values.d.ts +5 -5
  88. package/types/rules/no-restricted-attr-values.d.ts.map +1 -1
  89. package/types/rules/no-restricted-attrs.d.ts +5 -5
  90. package/types/rules/no-restricted-attrs.d.ts.map +1 -1
  91. package/types/rules/no-script-style-type.d.ts +4 -4
  92. package/types/rules/no-script-style-type.d.ts.map +1 -1
  93. package/types/rules/no-skip-heading-levels.d.ts +2 -2
  94. package/types/rules/no-skip-heading-levels.d.ts.map +1 -1
  95. package/types/rules/no-trailing-spaces.d.ts +3 -3
  96. package/types/rules/no-trailing-spaces.d.ts.map +1 -1
  97. package/types/rules/prefer-https.d.ts +11 -0
  98. package/types/rules/prefer-https.d.ts.map +1 -0
  99. package/types/rules/quotes.d.ts +6 -6
  100. package/types/rules/quotes.d.ts.map +1 -1
  101. package/types/rules/require-attrs.d.ts +9 -4
  102. package/types/rules/require-attrs.d.ts.map +1 -1
  103. package/types/rules/require-closing-tags.d.ts +2 -2
  104. package/types/rules/require-closing-tags.d.ts.map +1 -1
  105. package/types/rules/require-explicit-size.d.ts +9 -0
  106. package/types/rules/require-explicit-size.d.ts.map +1 -0
  107. package/types/rules/require-form-method.d.ts +7 -0
  108. package/types/rules/require-form-method.d.ts.map +1 -0
  109. package/types/rules/require-img-alt.d.ts +2 -2
  110. package/types/rules/require-img-alt.d.ts.map +1 -1
  111. package/types/rules/require-input-label.d.ts +8 -0
  112. package/types/rules/require-input-label.d.ts.map +1 -0
  113. package/types/rules/require-meta-charset.d.ts +3 -3
  114. package/types/rules/require-meta-charset.d.ts.map +1 -1
  115. package/types/rules/require-meta-description.d.ts +3 -3
  116. package/types/rules/require-meta-description.d.ts.map +1 -1
  117. package/types/rules/require-meta-viewport.d.ts +3 -3
  118. package/types/rules/require-meta-viewport.d.ts.map +1 -1
  119. package/types/rules/require-open-graph-protocol.d.ts +3 -3
  120. package/types/rules/require-open-graph-protocol.d.ts.map +1 -1
  121. package/types/rules/require-title.d.ts +4 -4
  122. package/types/rules/require-title.d.ts.map +1 -1
  123. package/types/rules/sort-attrs.d.ts +4 -4
  124. package/types/rules/sort-attrs.d.ts.map +1 -1
  125. package/types/rules/utils/node.d.ts +56 -37
  126. package/types/rules/utils/node.d.ts.map +1 -1
  127. package/types/rules/utils/settings.d.ts +2 -2
  128. package/types/rules/utils/settings.d.ts.map +1 -1
  129. package/types/rules/utils/source-code.d.ts +1 -1
  130. package/types/rules/utils/source-code.d.ts.map +1 -1
  131. package/types/rules/utils/visitors.d.ts +1 -1
  132. package/types/rules/utils/visitors.d.ts.map +1 -1
  133. package/types/types/settings.d.ts +13 -0
  134. package/types/types/settings.d.ts.map +1 -0
  135. package/lib/types.d.ts +0 -289
@@ -1,17 +1,16 @@
1
1
  declare namespace _exports {
2
- export { RuleModule, TagNode, BaseNode, CommentNode, DoctypeNode, ScriptTagNode, StyleTagNode, TextNode, NewlineNode, NodeMeta };
2
+ export { RuleModule, Tag, Comment, Doctype, ScriptTag, StyleTag, Text, NewlineNode, NodeMeta };
3
3
  }
4
4
  declare const _exports: RuleModule;
5
5
  export = _exports;
6
6
  type RuleModule = import("../types").RuleModule;
7
- type TagNode = import("../types").TagNode;
8
- type BaseNode = import("../types").BaseNode;
9
- type CommentNode = import("../types").CommentNode;
10
- type DoctypeNode = import("../types").DoctypeNode;
11
- type ScriptTagNode = import("../types").ScriptTagNode;
12
- type StyleTagNode = import("../types").StyleTagNode;
13
- type TextNode = import("../types").TextNode;
14
- type NewlineNode = CommentNode | DoctypeNode | ScriptTagNode | StyleTagNode | TagNode | TextNode;
7
+ type Tag = import("../types").Tag;
8
+ type Comment = import("../types").Comment;
9
+ type Doctype = import("../types").Doctype;
10
+ type ScriptTag = import("../types").ScriptTag;
11
+ type StyleTag = import("../types").StyleTag;
12
+ type Text = import("../types").Text;
13
+ type NewlineNode = Tag | Doctype | ScriptTag | StyleTag | Text;
15
14
  type NodeMeta = {
16
15
  childFirst: NewlineNode | null;
17
16
  childLast: NewlineNode | null;
@@ -1 +1 @@
1
- {"version":3,"file":"element-newline.d.ts","sourceRoot":"","sources":["../../lib/rules/element-newline.js"],"names":[],"mappings":";;;wBAoEU,UAAU;;kBAnEN,OAAO,UAAU,EAAE,UAAU;eAC7B,OAAO,UAAU,EAAE,OAAO;gBAC1B,OAAO,UAAU,EAAE,QAAQ;mBAC3B,OAAO,UAAU,EAAE,WAAW;mBAC9B,OAAO,UAAU,EAAE,WAAW;qBAC9B,OAAO,UAAU,EAAE,aAAa;oBAChC,OAAO,UAAU,EAAE,YAAY;gBAC/B,OAAO,UAAU,EAAE,QAAQ;mBAC3B,WAAW,GAAG,WAAW,GAAG,aAAa,GAAG,YAAY,GAAG,OAAO,GAAG,QAAQ;gBAC9E;IACR,UAAU,EAAE,WAAW,GAAG,IAAI,CAAC;IAC/B,SAAS,EAAE,WAAW,GAAG,IAAI,CAAC;IAC9B,eAAe,EAAE,OAAO,CAAC;CAC1B"}
1
+ {"version":3,"file":"element-newline.d.ts","sourceRoot":"","sources":["../../lib/rules/element-newline.js"],"names":[],"mappings":";;;wBAmEU,UAAU;;kBAlEN,OAAO,UAAU,EAAE,UAAU;WAC7B,OAAO,UAAU,EAAE,GAAG;eACtB,OAAO,UAAU,EAAE,OAAO;eAC1B,OAAO,UAAU,EAAE,OAAO;iBAC1B,OAAO,UAAU,EAAE,SAAS;gBAC5B,OAAO,UAAU,EAAE,QAAQ;YAC3B,OAAO,UAAU,EAAE,IAAI;mBACvB,GAAG,GAAG,OAAO,GAAG,SAAS,GAAG,QAAQ,GAAG,IAAI;gBAC5C;IACR,UAAU,EAAE,WAAW,GAAG,IAAI,CAAC;IAC/B,SAAS,EAAE,WAAW,GAAG,IAAI,CAAC;IAC9B,eAAe,EAAE,OAAO,CAAC;CAC1B"}
@@ -1,10 +1,10 @@
1
1
  declare namespace _exports {
2
- export { RuleModule, TagNode, ScriptTagNode, StyleTagNode };
2
+ export { RuleModule, Tag, ScriptTag, StyleTag };
3
3
  }
4
4
  declare const _exports: RuleModule;
5
5
  export = _exports;
6
6
  type RuleModule = import("../types").RuleModule;
7
- type TagNode = import("../types").TagNode;
8
- type ScriptTagNode = import("../types").ScriptTagNode;
9
- type StyleTagNode = import("../types").StyleTagNode;
7
+ type Tag = import("../types").Tag;
8
+ type ScriptTag = import("../types").ScriptTag;
9
+ type StyleTag = import("../types").StyleTag;
10
10
  //# 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":";;;wBAyCU,UAAU;;kBAxCN,OAAO,UAAU,EAAE,UAAU;eAC7B,OAAO,UAAU,EAAE,OAAO;qBAC1B,OAAO,UAAU,EAAE,aAAa;oBAChC,OAAO,UAAU,EAAE,YAAY"}
1
+ {"version":3,"file":"id-naming-convention.d.ts","sourceRoot":"","sources":["../../lib/rules/id-naming-convention.js"],"names":[],"mappings":";;;wBAyCU,UAAU;;kBAxCN,OAAO,UAAU,EAAE,UAAU;WAC7B,OAAO,UAAU,EAAE,GAAG;iBACtB,OAAO,UAAU,EAAE,SAAS;gBAC5B,OAAO,UAAU,EAAE,QAAQ"}
@@ -1,17 +1,19 @@
1
1
  declare namespace _exports {
2
- export { RuleModule, AnyNode, LineNode, BaseNode, TagNode, RuleListener, Token, SourceCode, TemplateLiteral, IndentType, MessageId };
2
+ export { RuleModule, AnyNode, Line, Tag, RuleListener, Context, Token, SourceCode, Range, SourceLocation, TemplateLiteral, IndentType, MessageId, IndentOptionInfo };
3
3
  }
4
4
  declare const _exports: RuleModule;
5
5
  export = _exports;
6
6
  type RuleModule = import("../../types").RuleModule;
7
7
  type AnyNode = import("../../types").AnyNode;
8
- type LineNode = import("../../types").LineNode;
9
- type BaseNode = import("../../types").BaseNode;
10
- type TagNode = import("../../types").TagNode;
8
+ type Line = import("../../types").Line;
9
+ type Tag = import("../../types").Tag;
11
10
  type RuleListener = import("../../types").RuleListener;
11
+ type Context = import("../../types").Context;
12
12
  type Token = import("eslint").AST.Token;
13
13
  type SourceCode = import("eslint").SourceCode;
14
- type TemplateLiteral = import("estree").TemplateLiteral;
14
+ type Range = import("eslint").AST.Range;
15
+ type SourceLocation = import("eslint").AST.SourceLocation;
16
+ type TemplateLiteral = import("../../types").TemplateLiteral;
15
17
  type IndentType = {
16
18
  TAB: "tab";
17
19
  SPACE: "space";
@@ -19,4 +21,9 @@ type IndentType = {
19
21
  type MessageId = {
20
22
  WRONG_INDENT: "wrongIndent";
21
23
  };
24
+ type IndentOptionInfo = {
25
+ indentType: IndentType["TAB"] | IndentType["SPACE"];
26
+ indentSize: number;
27
+ indentChar: string;
28
+ };
22
29
  //# sourceMappingURL=indent.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"indent.d.ts","sourceRoot":"","sources":["../../../lib/rules/indent/indent.js"],"names":[],"mappings":";;;wBAyCU,UAAU;;kBAxCN,OAAO,aAAa,EAAE,UAAU;eAChC,OAAO,aAAa,EAAE,OAAO;gBAC7B,OAAO,aAAa,EAAE,QAAQ;gBAC9B,OAAO,aAAa,EAAE,QAAQ;eAC9B,OAAO,aAAa,EAAE,OAAO;oBAC7B,OAAO,aAAa,EAAE,YAAY;aAClC,OAAO,QAAQ,EAAE,GAAG,CAAC,KAAK;kBAC1B,OAAO,QAAQ,EAAE,UAAU;uBAC3B,OAAO,QAAQ,EAAE,eAAe;;SAEhC,KAAK;WACL,OAAO;;;kBAEP,aAAa"}
1
+ {"version":3,"file":"indent.d.ts","sourceRoot":"","sources":["../../../lib/rules/indent/indent.js"],"names":[],"mappings":";;;wBAiDU,UAAU;;kBAhDN,OAAO,aAAa,EAAE,UAAU;eAChC,OAAO,aAAa,EAAE,OAAO;YAC7B,OAAO,aAAa,EAAE,IAAI;WAC1B,OAAO,aAAa,EAAE,GAAG;oBACzB,OAAO,aAAa,EAAE,YAAY;eAClC,OAAO,aAAa,EAAE,OAAO;aAC7B,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,aAAa,EAAE,eAAe;;SAIrC,KAAK;WACL,OAAO;;;kBAEP,aAAa;;;gBAEb,UAAU,CAAC,KAAK,CAAC,GAAG,UAAU,CAAC,OAAO,CAAC;gBACvC,MAAM;gBACN,MAAM"}
@@ -35,9 +35,17 @@ declare const _exports: {
35
35
  "no-trailing-spaces": import("../types").RuleModule;
36
36
  "no-restricted-attr-values": import("../types").RuleModule;
37
37
  "no-script-style-type": import("../types").RuleModule;
38
+ "no-heading-inside-button": import("../types").RuleModule;
39
+ "no-invalid-role": import("../types").RuleModule;
40
+ "no-nested-interactive": import("../types").RuleModule;
38
41
  lowercase: import("../types").RuleModule;
39
42
  "require-open-graph-protocol": import("../types").RuleModule;
43
+ "require-form-method": import("../types").RuleModule;
40
44
  "sort-attrs": import("../types").RuleModule;
45
+ "prefer-https": import("../types").RuleModule;
46
+ "require-input-label": import("../types").RuleModule;
47
+ "max-element-depth": import("../types").RuleModule;
48
+ "require-explicit-size": import("../types").RuleModule;
41
49
  };
42
50
  export = _exports;
43
51
  //# sourceMappingURL=index.d.ts.map
@@ -1,11 +1,10 @@
1
1
  declare namespace _exports {
2
- export { RuleModule, TagNode, StyleTagNode, ScriptTagNode, RuleListener };
2
+ export { RuleModule, Tag, StyleTag, ScriptTag };
3
3
  }
4
4
  declare const _exports: RuleModule;
5
5
  export = _exports;
6
6
  type RuleModule = import("../types").RuleModule;
7
- type TagNode = import("../types").TagNode;
8
- type StyleTagNode = import("../types").StyleTagNode;
9
- type ScriptTagNode = import("../types").ScriptTagNode;
10
- type RuleListener = import("../types").RuleListener;
7
+ type Tag = import("../types").Tag;
8
+ type StyleTag = import("../types").StyleTag;
9
+ type ScriptTag = import("../types").ScriptTag;
11
10
  //# sourceMappingURL=lowercase.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"lowercase.d.ts","sourceRoot":"","sources":["../../lib/rules/lowercase.js"],"names":[],"mappings":";;;wBAkBU,UAAU;;kBAjBN,OAAO,UAAU,EAAE,UAAU;eAC7B,OAAO,UAAU,EAAE,OAAO;oBAC1B,OAAO,UAAU,EAAE,YAAY;qBAC/B,OAAO,UAAU,EAAE,aAAa;oBAChC,OAAO,UAAU,EAAE,YAAY"}
1
+ {"version":3,"file":"lowercase.d.ts","sourceRoot":"","sources":["../../lib/rules/lowercase.js"],"names":[],"mappings":";;;wBAiBU,UAAU;;kBAhBN,OAAO,UAAU,EAAE,UAAU;WAC7B,OAAO,UAAU,EAAE,GAAG;gBACtB,OAAO,UAAU,EAAE,QAAQ;iBAC3B,OAAO,UAAU,EAAE,SAAS"}
@@ -0,0 +1,10 @@
1
+ declare namespace _exports {
2
+ export { RuleModule, Tag, StyleTag, ScriptTag };
3
+ }
4
+ declare const _exports: RuleModule;
5
+ export = _exports;
6
+ type RuleModule = import("../types").RuleModule;
7
+ type Tag = import("../types").Tag;
8
+ type StyleTag = import("../types").StyleTag;
9
+ type ScriptTag = import("../types").ScriptTag;
10
+ //# sourceMappingURL=max-element-depth.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"max-element-depth.d.ts","sourceRoot":"","sources":["../../lib/rules/max-element-depth.js"],"names":[],"mappings":";;;wBAeU,UAAU;;kBAdN,OAAO,UAAU,EAAE,UAAU;WAC7B,OAAO,UAAU,EAAE,GAAG;gBACtB,OAAO,UAAU,EAAE,QAAQ;iBAC3B,OAAO,UAAU,EAAE,SAAS"}
@@ -1,10 +1,10 @@
1
1
  declare namespace _exports {
2
- export { RuleModule, TagNode, StyleTagNode, ScriptTagNode };
2
+ export { RuleModule, Tag, StyleTag, ScriptTag };
3
3
  }
4
4
  declare const _exports: RuleModule;
5
5
  export = _exports;
6
6
  type RuleModule = import("../types").RuleModule;
7
- type TagNode = import("../types").TagNode;
8
- type StyleTagNode = import("../types").StyleTagNode;
9
- type ScriptTagNode = import("../types").ScriptTagNode;
7
+ type Tag = import("../types").Tag;
8
+ type StyleTag = import("../types").StyleTag;
9
+ type ScriptTag = import("../types").ScriptTag;
10
10
  //# 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":";;;wBA+BU,UAAU;;kBA9BN,OAAO,UAAU,EAAE,UAAU;eAC7B,OAAO,UAAU,EAAE,OAAO;oBAC1B,OAAO,UAAU,EAAE,YAAY;qBAC/B,OAAO,UAAU,EAAE,aAAa"}
1
+ {"version":3,"file":"no-abstract-roles.d.ts","sourceRoot":"","sources":["../../lib/rules/no-abstract-roles.js"],"names":[],"mappings":";;;wBA+BU,UAAU;;kBA9BN,OAAO,UAAU,EAAE,UAAU;WAC7B,OAAO,UAAU,EAAE,GAAG;gBACtB,OAAO,UAAU,EAAE,QAAQ;iBAC3B,OAAO,UAAU,EAAE,SAAS"}
@@ -1,10 +1,10 @@
1
1
  declare namespace _exports {
2
- export { RuleModule, TagNode, StyleTagNode, ScriptTagNode };
2
+ export { RuleModule, Tag, StyleTag, ScriptTag };
3
3
  }
4
4
  declare const _exports: RuleModule;
5
5
  export = _exports;
6
6
  type RuleModule = import("../types").RuleModule;
7
- type TagNode = import("../types").TagNode;
8
- type StyleTagNode = import("../types").StyleTagNode;
9
- type ScriptTagNode = import("../types").ScriptTagNode;
7
+ type Tag = import("../types").Tag;
8
+ type StyleTag = import("../types").StyleTag;
9
+ type ScriptTag = import("../types").ScriptTag;
10
10
  //# 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":";;;wBAgBU,UAAU;;kBAfN,OAAO,UAAU,EAAE,UAAU;eAC7B,OAAO,UAAU,EAAE,OAAO;oBAC1B,OAAO,UAAU,EAAE,YAAY;qBAC/B,OAAO,UAAU,EAAE,aAAa"}
1
+ {"version":3,"file":"no-accesskey-attrs.d.ts","sourceRoot":"","sources":["../../lib/rules/no-accesskey-attrs.js"],"names":[],"mappings":";;;wBAgBU,UAAU;;kBAfN,OAAO,UAAU,EAAE,UAAU;WAC7B,OAAO,UAAU,EAAE,GAAG;gBACtB,OAAO,UAAU,EAAE,QAAQ;iBAC3B,OAAO,UAAU,EAAE,SAAS"}
@@ -1,10 +1,10 @@
1
1
  declare namespace _exports {
2
- export { RuleModule, TagNode, StyleTagNode, ScriptTagNode };
2
+ export { RuleModule, Tag, StyleTag, ScriptTag };
3
3
  }
4
4
  declare const _exports: RuleModule;
5
5
  export = _exports;
6
6
  type RuleModule = import("../types").RuleModule;
7
- type TagNode = import("../types").TagNode;
8
- type StyleTagNode = import("../types").StyleTagNode;
9
- type ScriptTagNode = import("../types").ScriptTagNode;
7
+ type Tag = import("../types").Tag;
8
+ type StyleTag = import("../types").StyleTag;
9
+ type ScriptTag = import("../types").ScriptTag;
10
10
  //# 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":";;;wBAeU,UAAU;;kBAdN,OAAO,UAAU,EAAE,UAAU;eAC7B,OAAO,UAAU,EAAE,OAAO;oBAC1B,OAAO,UAAU,EAAE,YAAY;qBAC/B,OAAO,UAAU,EAAE,aAAa"}
1
+ {"version":3,"file":"no-duplicate-attrs.d.ts","sourceRoot":"","sources":["../../lib/rules/no-duplicate-attrs.js"],"names":[],"mappings":";;;wBAeU,UAAU;;kBAdN,OAAO,UAAU,EAAE,UAAU;WAC7B,OAAO,UAAU,EAAE,GAAG;gBACtB,OAAO,UAAU,EAAE,QAAQ;iBAC3B,OAAO,UAAU,EAAE,SAAS"}
@@ -1,11 +1,11 @@
1
1
  declare namespace _exports {
2
- export { RuleModule, TagNode, StyleTagNode, ScriptTagNode, AttributeValueNode };
2
+ export { RuleModule, Tag, StyleTag, ScriptTag, AttributeValue };
3
3
  }
4
4
  declare const _exports: RuleModule;
5
5
  export = _exports;
6
6
  type RuleModule = import("../types").RuleModule;
7
- type TagNode = import("../types").TagNode;
8
- type StyleTagNode = import("../types").StyleTagNode;
9
- type ScriptTagNode = import("../types").ScriptTagNode;
10
- type AttributeValueNode = import("es-html-parser").AttributeValueNode;
7
+ type Tag = import("../types").Tag;
8
+ type StyleTag = import("../types").StyleTag;
9
+ type ScriptTag = import("../types").ScriptTag;
10
+ type AttributeValue = import("../types").AttributeValue;
11
11
  //# 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":";;;wBAsBU,UAAU;;kBArBN,OAAO,UAAU,EAAE,UAAU;eAC7B,OAAO,UAAU,EAAE,OAAO;oBAC1B,OAAO,UAAU,EAAE,YAAY;qBAC/B,OAAO,UAAU,EAAE,aAAa;0BAChC,OAAO,gBAAgB,EAAE,kBAAkB"}
1
+ {"version":3,"file":"no-duplicate-id.d.ts","sourceRoot":"","sources":["../../lib/rules/no-duplicate-id.js"],"names":[],"mappings":";;;wBAsBU,UAAU;;kBArBN,OAAO,UAAU,EAAE,UAAU;WAC7B,OAAO,UAAU,EAAE,GAAG;gBACtB,OAAO,UAAU,EAAE,QAAQ;iBAC3B,OAAO,UAAU,EAAE,SAAS;sBAC5B,OAAO,UAAU,EAAE,cAAc"}
@@ -1,18 +1,18 @@
1
1
  declare namespace _exports {
2
- export { RuleModule, AttributeNode, OpenTagEndNode, OpenScriptTagEndNode, OpenStyleTagEndNode, OpenScriptTagStartNode, OpenTagStartNode, OpenStyleTagStartNode, TagNode, StyleTagNode, ScriptTagNode, AnyNode };
2
+ export { RuleModule, Attribute, OpenTagEnd, OpenScriptTagEnd, OpenStyleTagEnd, OpenScriptTagStart, OpenTagStart, OpenStyleTagStart, Tag, StyleTag, ScriptTag, AnyNode };
3
3
  }
4
4
  declare const _exports: RuleModule;
5
5
  export = _exports;
6
6
  type RuleModule = import("../types").RuleModule;
7
- type AttributeNode = import("../types").AttributeNode;
8
- type OpenTagEndNode = import("../types").OpenTagEndNode;
9
- type OpenScriptTagEndNode = import("../types").OpenScriptTagEndNode;
10
- type OpenStyleTagEndNode = import("../types").OpenStyleTagEndNode;
11
- type OpenScriptTagStartNode = import("../types").OpenScriptTagStartNode;
12
- type OpenTagStartNode = import("../types").OpenTagStartNode;
13
- type OpenStyleTagStartNode = import("../types").OpenStyleTagStartNode;
14
- type TagNode = import("../types").TagNode;
15
- type StyleTagNode = import("../types").StyleTagNode;
16
- type ScriptTagNode = import("../types").ScriptTagNode;
7
+ type Attribute = import("../types").Attribute;
8
+ type OpenTagEnd = import("../types").OpenTagEnd;
9
+ type OpenScriptTagEnd = import("../types").OpenScriptTagEnd;
10
+ type OpenStyleTagEnd = import("../types").OpenStyleTagEnd;
11
+ type OpenScriptTagStart = import("../types").OpenScriptTagStart;
12
+ type OpenTagStart = import("../types").OpenTagStart;
13
+ type OpenStyleTagStart = import("../types").OpenStyleTagStart;
14
+ type Tag = import("../types").Tag;
15
+ type StyleTag = import("../types").StyleTag;
16
+ type ScriptTag = import("../types").ScriptTag;
17
17
  type AnyNode = import("../types").AnyNode;
18
18
  //# 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":";;;wBAkCU,UAAU;;kBAjCN,OAAO,UAAU,EAAE,UAAU;qBAC7B,OAAO,UAAU,EAAE,aAAa;sBAChC,OAAO,UAAU,EAAE,cAAc;4BACjC,OAAO,UAAU,EAAE,oBAAoB;2BACvC,OAAO,UAAU,EAAE,mBAAmB;8BACtC,OAAO,UAAU,EAAE,sBAAsB;wBACzC,OAAO,UAAU,EAAE,gBAAgB;6BACnC,OAAO,UAAU,EAAE,qBAAqB;eACxC,OAAO,UAAU,EAAE,OAAO;oBAC1B,OAAO,UAAU,EAAE,YAAY;qBAC/B,OAAO,UAAU,EAAE,aAAa;eAChC,OAAO,UAAU,EAAE,OAAO"}
1
+ {"version":3,"file":"no-extra-spacing-attrs.d.ts","sourceRoot":"","sources":["../../lib/rules/no-extra-spacing-attrs.js"],"names":[],"mappings":";;;wBAkCU,UAAU;;kBAjCN,OAAO,UAAU,EAAE,UAAU;iBAC7B,OAAO,UAAU,EAAE,SAAS;kBAC5B,OAAO,UAAU,EAAE,UAAU;wBAC7B,OAAO,UAAU,EAAE,gBAAgB;uBACnC,OAAO,UAAU,EAAE,eAAe;0BAClC,OAAO,UAAU,EAAE,kBAAkB;oBACrC,OAAO,UAAU,EAAE,YAAY;yBAC/B,OAAO,UAAU,EAAE,iBAAiB;WACpC,OAAO,UAAU,EAAE,GAAG;gBACtB,OAAO,UAAU,EAAE,QAAQ;iBAC3B,OAAO,UAAU,EAAE,SAAS;eAC5B,OAAO,UAAU,EAAE,OAAO"}
@@ -1,14 +1,13 @@
1
1
  declare namespace _exports {
2
- export { RuleModule, CommentContentNode, TagNode, CommentNode, ContentNode, TextNode, LineNode, Range };
2
+ export { RuleModule, CommentContent, Tag, Comment, Text, Line, Range };
3
3
  }
4
4
  declare const _exports: RuleModule;
5
5
  export = _exports;
6
6
  type RuleModule = import("../types").RuleModule;
7
- type CommentContentNode = import("es-html-parser").CommentContentNode;
8
- type TagNode = import("es-html-parser").TagNode;
9
- type CommentNode = import("es-html-parser").CommentNode;
10
- type ContentNode = import("../types").ContentNode;
11
- type TextNode = import("es-html-parser").TextNode;
12
- type LineNode = import("../types").LineNode;
13
- type Range = import("../types").Range;
7
+ type CommentContent = import("../types").CommentContent;
8
+ type Tag = import("../types").Tag;
9
+ type Comment = import("../types").Comment;
10
+ type Text = import("../types").Text;
11
+ type Line = import("../types").Line;
12
+ type Range = import("eslint").AST.Range;
14
13
  //# 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":";;;wBAqBU,UAAU;;kBApBN,OAAO,UAAU,EAAE,UAAU;0BAC7B,OAAO,gBAAgB,EAAE,kBAAkB;eAC3C,OAAO,gBAAgB,EAAE,OAAO;mBAChC,OAAO,gBAAgB,EAAE,WAAW;mBACpC,OAAO,UAAU,EAAE,WAAW;gBAC9B,OAAO,gBAAgB,EAAE,QAAQ;gBACjC,OAAO,UAAU,EAAE,QAAQ;aAC3B,OAAO,UAAU,EAAE,KAAK"}
1
+ {"version":3,"file":"no-extra-spacing-text.d.ts","sourceRoot":"","sources":["../../lib/rules/no-extra-spacing-text.js"],"names":[],"mappings":";;;wBAoBU,UAAU;;kBAnBN,OAAO,UAAU,EAAE,UAAU;sBAC7B,OAAO,UAAU,EAAE,cAAc;WACjC,OAAO,UAAU,EAAE,GAAG;eACtB,OAAO,UAAU,EAAE,OAAO;YAC1B,OAAO,UAAU,EAAE,IAAI;YACvB,OAAO,UAAU,EAAE,IAAI;aACvB,OAAO,QAAQ,EAAE,GAAG,CAAC,KAAK"}
@@ -0,0 +1,7 @@
1
+ declare namespace _exports {
2
+ export { RuleModule };
3
+ }
4
+ declare const _exports: RuleModule;
5
+ export = _exports;
6
+ type RuleModule = import("../types").RuleModule;
7
+ //# sourceMappingURL=no-heading-inside-button.d.ts.map
@@ -0,0 +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,8 +1,7 @@
1
1
  declare namespace _exports {
2
- export { RuleModule, RuleListener };
2
+ export { RuleModule };
3
3
  }
4
4
  declare const _exports: RuleModule;
5
5
  export = _exports;
6
6
  type RuleModule = import("../types").RuleModule;
7
- type RuleListener = import("../types").RuleListener;
8
7
  //# 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":";;;wBAaU,UAAU;;kBAZN,OAAO,UAAU,EAAE,UAAU;oBAC7B,OAAO,UAAU,EAAE,YAAY"}
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"}
@@ -0,0 +1,7 @@
1
+ declare namespace _exports {
2
+ export { RuleModule };
3
+ }
4
+ declare const _exports: RuleModule;
5
+ export = _exports;
6
+ type RuleModule = import("../types").RuleModule;
7
+ //# sourceMappingURL=no-invalid-role.d.ts.map
@@ -0,0 +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,11 +1,11 @@
1
1
  declare namespace _exports {
2
- export { RuleModule, DocumentNode, AnyToken, CommentContentNode, TextNode };
2
+ export { AnyToken, RuleModule, Document, CommentContent, Text };
3
3
  }
4
4
  declare const _exports: RuleModule;
5
5
  export = _exports;
6
- type RuleModule = import("../types").RuleModule;
7
- type DocumentNode = import("es-html-parser").DocumentNode;
8
6
  type AnyToken = import("es-html-parser").AnyToken;
9
- type CommentContentNode = import("es-html-parser").CommentContentNode;
10
- type TextNode = import("es-html-parser").TextNode;
7
+ type RuleModule = import("../types").RuleModule;
8
+ type Document = import("../types").Document;
9
+ type CommentContent = import("../types").CommentContent;
10
+ type Text = import("../types").Text;
11
11
  //# 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":";;;wBA0BU,UAAU;;kBAzBN,OAAO,UAAU,EAAE,UAAU;oBAC7B,OAAO,gBAAgB,EAAE,YAAY;gBACrC,OAAO,gBAAgB,EAAE,QAAQ;0BACjC,OAAO,gBAAgB,EAAE,kBAAkB;gBAC3C,OAAO,gBAAgB,EAAE,QAAQ"}
1
+ {"version":3,"file":"no-multiple-empty-lines.d.ts","sourceRoot":"","sources":["../../lib/rules/no-multiple-empty-lines.js"],"names":[],"mappings":";;;wBA0BU,UAAU;;gBAzBN,OAAO,gBAAgB,EAAE,QAAQ;kBACjC,OAAO,UAAU,EAAE,UAAU;gBAC7B,OAAO,UAAU,EAAE,QAAQ;sBAC3B,OAAO,UAAU,EAAE,cAAc;YACjC,OAAO,UAAU,EAAE,IAAI"}
@@ -1,8 +1,8 @@
1
1
  declare namespace _exports {
2
- export { RuleModule, TagNode };
2
+ export { RuleModule, Tag };
3
3
  }
4
4
  declare const _exports: RuleModule;
5
5
  export = _exports;
6
6
  type RuleModule = import("../types").RuleModule;
7
- type TagNode = import("../types").TagNode;
7
+ type Tag = import("../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;eAC7B,OAAO,UAAU,EAAE,OAAO"}
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;WAC7B,OAAO,UAAU,EAAE,GAAG"}
@@ -0,0 +1,8 @@
1
+ declare namespace _exports {
2
+ export { RuleModule, Tag };
3
+ }
4
+ declare const _exports: RuleModule;
5
+ export = _exports;
6
+ type RuleModule = import("../types").RuleModule;
7
+ type Tag = import("../types").Tag;
8
+ //# sourceMappingURL=no-nested-interactive.d.ts.map
@@ -0,0 +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;WAC7B,OAAO,UAAU,EAAE,GAAG"}
@@ -1,10 +1,10 @@
1
1
  declare namespace _exports {
2
- export { RuleModule, TagNode, StyleTagNode, ScriptTagNode };
2
+ export { RuleModule, Tag, StyleTag, ScriptTag };
3
3
  }
4
4
  declare const _exports: RuleModule;
5
5
  export = _exports;
6
6
  type RuleModule = import("../types").RuleModule;
7
- type TagNode = import("../types").TagNode;
8
- type StyleTagNode = import("../types").StyleTagNode;
9
- type ScriptTagNode = import("../types").ScriptTagNode;
7
+ type Tag = import("../types").Tag;
8
+ type StyleTag = import("../types").StyleTag;
9
+ type ScriptTag = import("../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;eAC7B,OAAO,UAAU,EAAE,OAAO;oBAC1B,OAAO,UAAU,EAAE,YAAY;qBAC/B,OAAO,UAAU,EAAE,aAAa"}
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;WAC7B,OAAO,UAAU,EAAE,GAAG;gBACtB,OAAO,UAAU,EAAE,QAAQ;iBAC3B,OAAO,UAAU,EAAE,SAAS"}
@@ -1,13 +1,13 @@
1
1
  declare namespace _exports {
2
- export { RuleModule, StyleTagNode, AttributeNode, TagNode, ScriptTagNode, Options };
2
+ export { RuleModule, StyleTag, Attribute, Tag, ScriptTag, Options };
3
3
  }
4
4
  declare const _exports: RuleModule;
5
5
  export = _exports;
6
6
  type RuleModule = import("../types").RuleModule;
7
- type StyleTagNode = import("../types").StyleTagNode;
8
- type AttributeNode = import("../types").AttributeNode;
9
- type TagNode = import("../types").TagNode;
10
- type ScriptTagNode = import("../types").ScriptTagNode;
7
+ type StyleTag = import("../types").StyleTag;
8
+ type Attribute = import("../types").Attribute;
9
+ type Tag = import("../types").Tag;
10
+ type ScriptTag = import("../types").ScriptTag;
11
11
  type Options = {
12
12
  attrPatterns: string[];
13
13
  attrValuePatterns: string[];
@@ -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;;kBAhBN,OAAO,UAAU,EAAE,UAAU;oBAC7B,OAAO,UAAU,EAAE,YAAY;qBAC/B,OAAO,UAAU,EAAE,aAAa;eAChC,OAAO,UAAU,EAAE,OAAO;qBAC1B,OAAO,UAAU,EAAE,aAAa;eACjC;IAAC,YAAY,EAAE,MAAM,EAAE,CAAC;IAAC,iBAAiB,EAAE,MAAM,EAAE,CAAC;IAAC,OAAO,CAAC,EAAE,MAAM,CAAA;CAAC,EAAE"}
1
+ {"version":3,"file":"no-restricted-attr-values.d.ts","sourceRoot":"","sources":["../../lib/rules/no-restricted-attr-values.js"],"names":[],"mappings":";;;wBAiBU,UAAU;;kBAhBN,OAAO,UAAU,EAAE,UAAU;gBAC7B,OAAO,UAAU,EAAE,QAAQ;iBAC3B,OAAO,UAAU,EAAE,SAAS;WAC5B,OAAO,UAAU,EAAE,GAAG;iBACtB,OAAO,UAAU,EAAE,SAAS;eAC7B;IAAC,YAAY,EAAE,MAAM,EAAE,CAAC;IAAC,iBAAiB,EAAE,MAAM,EAAE,CAAC;IAAC,OAAO,CAAC,EAAE,MAAM,CAAA;CAAC,EAAE"}
@@ -1,13 +1,13 @@
1
1
  declare namespace _exports {
2
- export { RuleModule, StyleTagNode, AttributeNode, TagNode, ScriptTagNode, Options };
2
+ export { RuleModule, StyleTag, Attribute, Tag, ScriptTag, Options };
3
3
  }
4
4
  declare const _exports: RuleModule;
5
5
  export = _exports;
6
6
  type RuleModule = import("../types").RuleModule;
7
- type StyleTagNode = import("../types").StyleTagNode;
8
- type AttributeNode = import("../types").AttributeNode;
9
- type TagNode = import("../types").TagNode;
10
- type ScriptTagNode = import("../types").ScriptTagNode;
7
+ type StyleTag = import("../types").StyleTag;
8
+ type Attribute = import("../types").Attribute;
9
+ type Tag = import("../types").Tag;
10
+ type ScriptTag = import("../types").ScriptTag;
11
11
  type Options = {
12
12
  tagPatterns: string[];
13
13
  attrPatterns: string[];
@@ -1 +1 @@
1
- {"version":3,"file":"no-restricted-attrs.d.ts","sourceRoot":"","sources":["../../lib/rules/no-restricted-attrs.js"],"names":[],"mappings":";;;wBAkBU,UAAU;;kBAjBN,OAAO,UAAU,EAAE,UAAU;oBAC7B,OAAO,UAAU,EAAE,YAAY;qBAC/B,OAAO,UAAU,EAAE,aAAa;eAChC,OAAO,UAAU,EAAE,OAAO;qBAC1B,OAAO,UAAU,EAAE,aAAa;eACjC;IAAC,WAAW,EAAE,MAAM,EAAE,CAAC;IAAC,YAAY,EAAE,MAAM,EAAE,CAAC;IAAC,OAAO,CAAC,EAAE,MAAM,CAAA;CAAC,EAAE"}
1
+ {"version":3,"file":"no-restricted-attrs.d.ts","sourceRoot":"","sources":["../../lib/rules/no-restricted-attrs.js"],"names":[],"mappings":";;;wBAkBU,UAAU;;kBAjBN,OAAO,UAAU,EAAE,UAAU;gBAC7B,OAAO,UAAU,EAAE,QAAQ;iBAC3B,OAAO,UAAU,EAAE,SAAS;WAC5B,OAAO,UAAU,EAAE,GAAG;iBACtB,OAAO,UAAU,EAAE,SAAS;eAC7B;IAAC,WAAW,EAAE,MAAM,EAAE,CAAC;IAAC,YAAY,EAAE,MAAM,EAAE,CAAC;IAAC,OAAO,CAAC,EAAE,MAAM,CAAA;CAAC,EAAE"}
@@ -1,10 +1,10 @@
1
1
  declare namespace _exports {
2
- export { RuleModule, StyleTagNode, TagNode, ScriptTagNode };
2
+ export { RuleModule, StyleTag, Tag, ScriptTag };
3
3
  }
4
4
  declare const _exports: RuleModule;
5
5
  export = _exports;
6
6
  type RuleModule = import("../types").RuleModule;
7
- type StyleTagNode = import("../types").StyleTagNode;
8
- type TagNode = import("../types").TagNode;
9
- type ScriptTagNode = import("../types").ScriptTagNode;
7
+ type StyleTag = import("../types").StyleTag;
8
+ type Tag = import("../types").Tag;
9
+ type ScriptTag = import("../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;oBAC7B,OAAO,UAAU,EAAE,YAAY;eAC/B,OAAO,UAAU,EAAE,OAAO;qBAC1B,OAAO,UAAU,EAAE,aAAa"}
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;gBAC7B,OAAO,UAAU,EAAE,QAAQ;WAC3B,OAAO,UAAU,EAAE,GAAG;iBACtB,OAAO,UAAU,EAAE,SAAS"}
@@ -1,8 +1,8 @@
1
1
  declare namespace _exports {
2
- export { RuleModule, TagNode };
2
+ export { RuleModule, Tag };
3
3
  }
4
4
  declare const _exports: RuleModule;
5
5
  export = _exports;
6
6
  type RuleModule = import("../types").RuleModule;
7
- type TagNode = import("../types").TagNode;
7
+ type Tag = import("../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;eAC7B,OAAO,UAAU,EAAE,OAAO"}
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;WAC7B,OAAO,UAAU,EAAE,GAAG"}
@@ -1,9 +1,9 @@
1
1
  declare namespace _exports {
2
- export { RuleModule, CommentContentNode, TextNode };
2
+ export { RuleModule, CommentContent, Text };
3
3
  }
4
4
  declare const _exports: RuleModule;
5
5
  export = _exports;
6
6
  type RuleModule = import("../types").RuleModule;
7
- type CommentContentNode = import("es-html-parser").CommentContentNode;
8
- type TextNode = import("es-html-parser").TextNode;
7
+ type CommentContent = import("../types").CommentContent;
8
+ type Text = import("../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;0BAC7B,OAAO,gBAAgB,EAAE,kBAAkB;gBAC3C,OAAO,gBAAgB,EAAE,QAAQ"}
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;sBAC7B,OAAO,UAAU,EAAE,cAAc;YACjC,OAAO,UAAU,EAAE,IAAI"}
@@ -0,0 +1,11 @@
1
+ declare namespace _exports {
2
+ export { RuleModule, Tag, ScriptTag, Attribute, AttributeValue };
3
+ }
4
+ declare const _exports: RuleModule;
5
+ export = _exports;
6
+ type RuleModule = import("../types").RuleModule;
7
+ type Tag = import("../types").Tag;
8
+ type ScriptTag = import("../types").ScriptTag;
9
+ type Attribute = import("../types").Attribute;
10
+ type AttributeValue = import("../types").AttributeValue;
11
+ //# sourceMappingURL=prefer-https.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"prefer-https.d.ts","sourceRoot":"","sources":["../../lib/rules/prefer-https.js"],"names":[],"mappings":";;;wBAkEU,UAAU;;kBAjEN,OAAO,UAAU,EAAE,UAAU;WAC7B,OAAO,UAAU,EAAE,GAAG;iBACtB,OAAO,UAAU,EAAE,SAAS;iBAC5B,OAAO,UAAU,EAAE,SAAS;sBAC5B,OAAO,UAAU,EAAE,cAAc"}
@@ -1,12 +1,12 @@
1
1
  declare namespace _exports {
2
- export { RuleModule, Range, AttributeNode, TagNode, ScriptTagNode, StyleTagNode };
2
+ export { Range, RuleModule, Attribute, Tag, ScriptTag, StyleTag };
3
3
  }
4
4
  declare const _exports: RuleModule;
5
5
  export = _exports;
6
+ type Range = import("eslint").AST.Range;
6
7
  type RuleModule = import("../types").RuleModule;
7
- type Range = import("../types").Range;
8
- type AttributeNode = import("../types").AttributeNode;
9
- type TagNode = import("../types").TagNode;
10
- type ScriptTagNode = import("../types").ScriptTagNode;
11
- type StyleTagNode = import("../types").StyleTagNode;
8
+ type Attribute = import("../types").Attribute;
9
+ type Tag = import("../types").Tag;
10
+ type ScriptTag = import("../types").ScriptTag;
11
+ type StyleTag = import("../types").StyleTag;
12
12
  //# sourceMappingURL=quotes.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"quotes.d.ts","sourceRoot":"","sources":["../../lib/rules/quotes.js"],"names":[],"mappings":";;;wBAyBU,UAAU;;kBAxBN,OAAO,UAAU,EAAE,UAAU;aAC7B,OAAO,UAAU,EAAE,KAAK;qBACxB,OAAO,UAAU,EAAE,aAAa;eAChC,OAAO,UAAU,EAAE,OAAO;qBAC1B,OAAO,UAAU,EAAE,aAAa;oBAChC,OAAO,UAAU,EAAE,YAAY"}
1
+ {"version":3,"file":"quotes.d.ts","sourceRoot":"","sources":["../../lib/rules/quotes.js"],"names":[],"mappings":";;;wBAyBU,UAAU;;aAxBN,OAAO,QAAQ,EAAE,GAAG,CAAC,KAAK;kBAC1B,OAAO,UAAU,EAAE,UAAU;iBAC7B,OAAO,UAAU,EAAE,SAAS;WAC5B,OAAO,UAAU,EAAE,GAAG;iBACtB,OAAO,UAAU,EAAE,SAAS;gBAC5B,OAAO,UAAU,EAAE,QAAQ"}