@html-eslint/eslint-plugin 0.27.0 → 0.28.0-alpha.3

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 (134) hide show
  1. package/lib/rules/attrs-newline.js +4 -5
  2. package/lib/rules/element-newline.js +22 -25
  3. package/lib/rules/id-naming-convention.js +63 -22
  4. package/lib/rules/indent.js +11 -4
  5. package/lib/rules/lowercase.js +4 -5
  6. package/lib/rules/no-abstract-roles.js +23 -19
  7. package/lib/rules/no-accesskey-attrs.js +18 -14
  8. package/lib/rules/no-aria-hidden-body.js +18 -12
  9. package/lib/rules/no-duplicate-attrs.js +27 -23
  10. package/lib/rules/no-duplicate-id.js +62 -21
  11. package/lib/rules/no-extra-spacing-attrs.js +104 -100
  12. package/lib/rules/no-extra-spacing-text.js +66 -26
  13. package/lib/rules/no-inline-styles.js +4 -3
  14. package/lib/rules/no-multiple-empty-lines.js +94 -42
  15. package/lib/rules/no-multiple-h1.js +1 -1
  16. package/lib/rules/no-obsolete-tags.js +3 -2
  17. package/lib/rules/no-positive-tabindex.js +24 -18
  18. package/lib/rules/no-restricted-attr-values.js +51 -47
  19. package/lib/rules/no-restricted-attrs.js +50 -45
  20. package/lib/rules/no-script-style-type.js +3 -2
  21. package/lib/rules/no-skip-heading-levels.js +1 -1
  22. package/lib/rules/no-target-blank.js +7 -2
  23. package/lib/rules/no-trailing-spaces.js +95 -39
  24. package/lib/rules/quotes.js +12 -8
  25. package/lib/rules/require-attrs.js +28 -20
  26. package/lib/rules/require-button-type.js +7 -3
  27. package/lib/rules/require-closing-tags.js +3 -2
  28. package/lib/rules/require-frame-title.js +3 -2
  29. package/lib/rules/require-img-alt.js +3 -2
  30. package/lib/rules/require-lang.js +3 -2
  31. package/lib/rules/require-li-container.js +1 -1
  32. package/lib/rules/require-meta-charset.js +5 -9
  33. package/lib/rules/require-meta-description.js +5 -5
  34. package/lib/rules/require-meta-viewport.js +5 -5
  35. package/lib/rules/require-open-graph-protocol.js +5 -5
  36. package/lib/rules/require-title.js +8 -7
  37. package/lib/rules/sort-attrs.js +5 -3
  38. package/lib/rules/utils/node.js +226 -68
  39. package/lib/rules/utils/settings.js +88 -0
  40. package/lib/rules/utils/source-code.js +14 -0
  41. package/lib/rules/utils/visitors.js +52 -0
  42. package/lib/types.d.ts +34 -22
  43. package/package.json +11 -6
  44. package/types/configs/recommended.d.ts +1 -1
  45. package/types/constants/rule-category.d.ts +4 -4
  46. package/types/index.d.ts.map +1 -1
  47. package/types/rules/attrs-newline.d.ts +7 -4
  48. package/types/rules/attrs-newline.d.ts.map +1 -1
  49. package/types/rules/element-newline.d.ts +13 -11
  50. package/types/rules/element-newline.d.ts.map +1 -1
  51. package/types/rules/id-naming-convention.d.ts +7 -4
  52. package/types/rules/id-naming-convention.d.ts.map +1 -1
  53. package/types/rules/indent.d.ts +10 -7
  54. package/types/rules/indent.d.ts.map +1 -1
  55. package/types/rules/lowercase.d.ts +8 -4
  56. package/types/rules/lowercase.d.ts.map +1 -1
  57. package/types/rules/no-abstract-roles.d.ts +7 -4
  58. package/types/rules/no-abstract-roles.d.ts.map +1 -1
  59. package/types/rules/no-accesskey-attrs.d.ts +7 -4
  60. package/types/rules/no-accesskey-attrs.d.ts.map +1 -1
  61. package/types/rules/no-aria-hidden-body.d.ts +4 -1
  62. package/types/rules/no-aria-hidden-body.d.ts.map +1 -1
  63. package/types/rules/no-duplicate-attrs.d.ts +7 -4
  64. package/types/rules/no-duplicate-attrs.d.ts.map +1 -1
  65. package/types/rules/no-duplicate-id.d.ts +8 -4
  66. package/types/rules/no-duplicate-id.d.ts.map +1 -1
  67. package/types/rules/no-extra-spacing-attrs.d.ts +15 -12
  68. package/types/rules/no-extra-spacing-attrs.d.ts.map +1 -1
  69. package/types/rules/no-extra-spacing-text.d.ts +11 -5
  70. package/types/rules/no-extra-spacing-text.d.ts.map +1 -1
  71. package/types/rules/no-inline-styles.d.ts +5 -1
  72. package/types/rules/no-inline-styles.d.ts.map +1 -1
  73. package/types/rules/no-multiple-empty-lines.d.ts +8 -2
  74. package/types/rules/no-multiple-empty-lines.d.ts.map +1 -1
  75. package/types/rules/no-multiple-h1.d.ts +5 -2
  76. package/types/rules/no-multiple-h1.d.ts.map +1 -1
  77. package/types/rules/no-non-scalable-viewport.d.ts +4 -1
  78. package/types/rules/no-non-scalable-viewport.d.ts.map +1 -1
  79. package/types/rules/no-obsolete-tags.d.ts +4 -1
  80. package/types/rules/no-obsolete-tags.d.ts.map +1 -1
  81. package/types/rules/no-positive-tabindex.d.ts +7 -4
  82. package/types/rules/no-positive-tabindex.d.ts.map +1 -1
  83. package/types/rules/no-restricted-attr-values.d.ts +9 -6
  84. package/types/rules/no-restricted-attr-values.d.ts.map +1 -1
  85. package/types/rules/no-restricted-attrs.d.ts +9 -6
  86. package/types/rules/no-restricted-attrs.d.ts.map +1 -1
  87. package/types/rules/no-script-style-type.d.ts +7 -4
  88. package/types/rules/no-script-style-type.d.ts.map +1 -1
  89. package/types/rules/no-skip-heading-levels.d.ts +5 -2
  90. package/types/rules/no-skip-heading-levels.d.ts.map +1 -1
  91. package/types/rules/no-target-blank.d.ts +4 -1
  92. package/types/rules/no-target-blank.d.ts.map +1 -1
  93. package/types/rules/no-trailing-spaces.d.ts +6 -1
  94. package/types/rules/no-trailing-spaces.d.ts.map +1 -1
  95. package/types/rules/quotes.d.ts +9 -6
  96. package/types/rules/quotes.d.ts.map +1 -1
  97. package/types/rules/require-attrs.d.ts +7 -4
  98. package/types/rules/require-attrs.d.ts.map +1 -1
  99. package/types/rules/require-button-type.d.ts +4 -1
  100. package/types/rules/require-button-type.d.ts.map +1 -1
  101. package/types/rules/require-closing-tags.d.ts +5 -2
  102. package/types/rules/require-closing-tags.d.ts.map +1 -1
  103. package/types/rules/require-doctype.d.ts +4 -1
  104. package/types/rules/require-doctype.d.ts.map +1 -1
  105. package/types/rules/require-frame-title.d.ts +4 -1
  106. package/types/rules/require-frame-title.d.ts.map +1 -1
  107. package/types/rules/require-img-alt.d.ts +5 -2
  108. package/types/rules/require-img-alt.d.ts.map +1 -1
  109. package/types/rules/require-lang.d.ts +4 -1
  110. package/types/rules/require-lang.d.ts.map +1 -1
  111. package/types/rules/require-li-container.d.ts +4 -1
  112. package/types/rules/require-li-container.d.ts.map +1 -1
  113. package/types/rules/require-meta-charset.d.ts +6 -2
  114. package/types/rules/require-meta-charset.d.ts.map +1 -1
  115. package/types/rules/require-meta-description.d.ts +6 -2
  116. package/types/rules/require-meta-description.d.ts.map +1 -1
  117. package/types/rules/require-meta-viewport.d.ts +6 -2
  118. package/types/rules/require-meta-viewport.d.ts.map +1 -1
  119. package/types/rules/require-open-graph-protocol.d.ts +6 -2
  120. package/types/rules/require-open-graph-protocol.d.ts.map +1 -1
  121. package/types/rules/require-title.d.ts +7 -3
  122. package/types/rules/require-title.d.ts.map +1 -1
  123. package/types/rules/sort-attrs.d.ts +7 -4
  124. package/types/rules/sort-attrs.d.ts.map +1 -1
  125. package/types/rules/utils/array.d.ts.map +1 -1
  126. package/types/rules/utils/naming.d.ts.map +1 -1
  127. package/types/rules/utils/node.d.ts +65 -12
  128. package/types/rules/utils/node.d.ts.map +1 -1
  129. package/types/rules/utils/settings.d.ts +19 -0
  130. package/types/rules/utils/settings.d.ts.map +1 -0
  131. package/types/rules/utils/source-code.d.ts +9 -0
  132. package/types/rules/utils/source-code.d.ts.map +1 -0
  133. package/types/rules/utils/visitors.d.ts +10 -0
  134. package/types/rules/utils/visitors.d.ts.map +1 -0
package/lib/types.d.ts CHANGED
@@ -1,4 +1,4 @@
1
- import ESTree from "estree";
1
+ import ESTree, { TaggedTemplateExpression, TemplateLiteral } from "estree";
2
2
  import ESLint from "eslint";
3
3
  import * as ESHtml from "es-html-parser";
4
4
 
@@ -19,12 +19,6 @@ export interface BaseNode {
19
19
  };
20
20
  }
21
21
 
22
- export interface ProgramNode
23
- extends Omit<ESHtml.DocumentNode, "type" | "children"> {
24
- type: "Program";
25
- body: ESHtml.DocumentNode["children"];
26
- }
27
-
28
22
  interface AttributeKeyNode extends ESHtml.AttributeKeyNode {
29
23
  parent: AttributeNode;
30
24
  }
@@ -35,7 +29,7 @@ interface TextNode extends ESHtml.TextNode {
35
29
 
36
30
  export interface TagNode extends ESHtml.TagNode {
37
31
  attributes: AttributeNode[];
38
- parent: TagNode | ProgramNode;
32
+ parent: TagNode | HTMLNode;
39
33
  openStart: OpenTagStartNode;
40
34
  openEnd: OpenTagEndNode;
41
35
  close: CloseTagNode;
@@ -78,7 +72,7 @@ interface AttributeValueWrapperStartNode
78
72
 
79
73
  export interface ScriptTagNode extends ESHtml.ScriptTagNode {
80
74
  attributes: AttributeNode[];
81
- parent: ProgramNode | TagNode;
75
+ parent: HTMLNode | TagNode;
82
76
  openStart: OpenScriptTagStartNode;
83
77
  openEnd: OpenScriptTagEndNode;
84
78
  }
@@ -101,7 +95,7 @@ interface ScriptTagContentNode extends ESHtml.ScriptTagContentNode {
101
95
 
102
96
  export interface StyleTagNode extends ESHtml.StyleTagNode {
103
97
  attributes: AttributeNode[];
104
- parent: TagNode | ProgramNode;
98
+ parent: TagNode | HTMLNode;
105
99
  openStart: OpenStyleTagStartNode;
106
100
  openEnd: OpenStyleTagEndNode;
107
101
  }
@@ -123,7 +117,7 @@ interface CloseStyleTagNode extends ESHtml.CloseStyleTagNode {
123
117
  }
124
118
 
125
119
  interface CommentNode extends ESHtml.CommentNode {
126
- parent: ProgramNode | TagNode;
120
+ parent: HTMLNode | TagNode;
127
121
  }
128
122
 
129
123
  interface CommentOpenNode extends ESHtml.CommentOpenNode {
@@ -139,7 +133,7 @@ interface CommentContentNode extends ESHtml.CommentContentNode {
139
133
  }
140
134
 
141
135
  interface DoctypeNode extends ESHtml.DoctypeNode {
142
- parent: ProgramNode;
136
+ parent: HTMLNode;
143
137
  }
144
138
 
145
139
  interface DoctypeOpenNode extends ESHtml.DoctypeOpenNode {
@@ -171,10 +165,18 @@ interface DoctypeAttributeWrapperEnd
171
165
  interface LineNode extends BaseNode {
172
166
  type: "Line";
173
167
  value: string;
168
+ skipIndentCheck: boolean;
174
169
  }
175
170
 
176
- interface RuleListener {
177
- Program?: (node: ProgramNode) => void;
171
+ type PostFix<T, S extends string> = {
172
+ [K in keyof T as `${K & string}${S}`]: T[K];
173
+ };
174
+
175
+ export type RuleListener = BaseRuleListener &
176
+ PostFix<BaseRuleListener, ":exit">;
177
+
178
+ interface BaseRuleListener {
179
+ Document?: (node: ESHtml.DocumentNode) => void;
178
180
  AttributeKey?: (node: AttributeKeyNode) => void;
179
181
  Text?: (node: TextNode) => void;
180
182
  Tag?: (node: TagNode) => void;
@@ -200,12 +202,14 @@ interface RuleListener {
200
202
  CommentClose?: (node: CommentCloseNode) => void;
201
203
  CommentContent?: (node: CommentContentNode) => void;
202
204
  Doctype?: (node: DoctypeNode) => void;
203
- DoctypeOpen: (node: DoctypeOpenNode) => void;
205
+ DoctypeOpen?: (node: DoctypeOpenNode) => void;
204
206
  DoctypeClose?: (node: DoctypeCloseNode) => void;
205
207
  DoctypeAttribute?: (node: DoctypeAttributeNode) => void;
206
208
  DoctypeAttributeValue?: (node: DoctypeAttributeValueNode) => void;
207
209
  DoctypeAttributeWrapperStart?: (node: DoctypeAttributeWrapperStart) => void;
208
210
  DoctypeAttributeWrapperEnd?: (node: DoctypeAttributeWrapperEnd) => void;
211
+ TaggedTemplateExpression?: (node: TaggedTemplateExpression) => void;
212
+ TemplateLiteral?: (node: TemplateLiteral) => void;
209
213
  }
210
214
 
211
215
  export interface RuleModule extends ESLint.Rule.RuleModule {
@@ -258,16 +262,10 @@ type ReportDescriptorLocation = {
258
262
  column?: number;
259
263
  };
260
264
 
261
- interface Context extends Omit<ESLint.Rule.RuleContext, "report"> {
265
+ export interface Context extends Omit<ESLint.Rule.RuleContext, "report"> {
262
266
  report(descriptor: ReportDescriptor): void;
263
267
  }
264
268
 
265
- export type ChildType<T extends BaseNode> = T extends ProgramNode
266
- ? T["body"][number]
267
- : T extends TagNode
268
- ? T["children"][number]
269
- : never;
270
-
271
269
  export type ContentNode =
272
270
  | CommentNode
273
271
  | DoctypeNode
@@ -275,3 +273,17 @@ export type ContentNode =
275
273
  | StyleTagNode
276
274
  | TagNode
277
275
  | TextNode;
276
+
277
+ export type MaybeHTMLSettings = {
278
+ templateLiterals?: {
279
+ tags?: string[];
280
+ comments?: string[];
281
+ };
282
+ };
283
+
284
+ export type HTMLSettings = {
285
+ templateLiterals: {
286
+ tags: RegExp[];
287
+ comments: RegExp[];
288
+ };
289
+ };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@html-eslint/eslint-plugin",
3
- "version": "0.27.0",
3
+ "version": "0.28.0-alpha.3",
4
4
  "description": "ESLint plugin for html",
5
5
  "author": "yeonjuan",
6
6
  "homepage": "https://github.com/yeonjuan/html-eslint#readme",
@@ -44,12 +44,17 @@
44
44
  "lint",
45
45
  "accessibility"
46
46
  ],
47
+ "dependencies": {
48
+ "@html-eslint/template-parser": "^0.28.0-alpha.3"
49
+ },
47
50
  "devDependencies": {
48
- "@html-eslint/parser": "^0.27.0",
49
- "@types/eslint": "^8.56.2",
51
+ "@html-eslint/parser": "^0.28.0-alpha.3",
52
+ "@html-eslint/template-parser": "^0.27.0",
53
+ "@types/eslint": "^9.6.1",
50
54
  "@types/estree": "^0.0.47",
51
- "es-html-parser": "^0.0.8",
52
- "typescript": "^4.4.4"
55
+ "es-html-parser": "^1.0.0-alpha.4",
56
+ "espree": "^10.3.0",
57
+ "typescript": "^5.7.2"
53
58
  },
54
- "gitHead": "a7c09dfb3090bb779d6fe62fda814d4d7ca07d4a"
59
+ "gitHead": "f94af0cb0051ad0fee168721e1be457dc7475535"
55
60
  }
@@ -1,4 +1,4 @@
1
- export const rules: {
1
+ export let rules: {
2
2
  "@html-eslint/require-lang": string;
3
3
  "@html-eslint/require-img-alt": string;
4
4
  "@html-eslint/require-doctype": string;
@@ -1,5 +1,5 @@
1
- export const BEST_PRACTICE: string;
2
- export const SEO: string;
3
- export const ACCESSIBILITY: string;
4
- export const STYLE: string;
1
+ export let BEST_PRACTICE: string;
2
+ export let SEO: string;
3
+ export let ACCESSIBILITY: string;
4
+ export let STYLE: string;
5
5
  //# sourceMappingURL=rule-category.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../lib/index.js"],"names":[],"mappings":";AAIA;;GAEG;AACH,sBAFU;IAAC,OAAO,EAAE;QAAC,aAAa,kBAAkB,CAAC;QAAA,kBAAkB,EAAE,OAAO,QAAQ,EAAE,MAAM,CAAC,UAAU,CAAE;QAAC,OAAO,YAAY,CAAA;KAAC,CAAA;CAAC,CAQjI"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../lib/index.js"],"names":[],"mappings":";AAIA;;GAEG;AACH,sBAFU;IAAC,OAAO,EAAE;QAAC,WAAW,EAAE,OAAO,WAAW,CAAC;QAAA,kBAAkB,EAAE,OAAO,QAAQ,EAAE,MAAM,CAAC,UAAU,CAAE;QAAC,KAAK,EAAE,OAAO,KAAK,CAAA;KAAC,CAAA;CAAC,CAQjI"}
@@ -1,9 +1,12 @@
1
+ declare namespace _exports {
2
+ export { RuleFixer, RuleModule, TagNode, MessageId };
3
+ }
1
4
  declare const _exports: RuleModule;
2
5
  export = _exports;
3
- export type RuleFixer = import("../types").RuleFixer;
4
- export type RuleModule = import("../types").RuleModule;
5
- export type TagNode = import("../types").TagNode;
6
- export type MessageId = {
6
+ type RuleFixer = import("../types").RuleFixer;
7
+ type RuleModule = import("../types").RuleModule;
8
+ type TagNode = import("../types").TagNode;
9
+ type MessageId = {
7
10
  CLOSE_STYLE_WRONG: "closeStyleWrong";
8
11
  NEWLINE_MISSING: "newlineMissing";
9
12
  NEWLINE_UNEXPECTED: "newlineUnexpected";
@@ -1 +1 @@
1
- {"version":3,"file":"attrs-newline.d.ts","sourceRoot":"","sources":["../../lib/rules/attrs-newline.js"],"names":[],"mappings":"wBAuBU,UAAU;;wBAtBN,OAAO,UAAU,EAAE,SAAS;yBAC5B,OAAO,UAAU,EAAE,UAAU;sBAC7B,OAAO,UAAU,EAAE,OAAO;;uBAE1B,iBAAiB;qBACjB,gBAAgB;wBAChB,mBAAmB"}
1
+ {"version":3,"file":"attrs-newline.d.ts","sourceRoot":"","sources":["../../lib/rules/attrs-newline.js"],"names":[],"mappings":";;;wBAyBU,UAAU;;iBAxBN,OAAO,UAAU,EAAE,SAAS;kBAC5B,OAAO,UAAU,EAAE,UAAU;eAC7B,OAAO,UAAU,EAAE,OAAO;;uBAG1B,iBAAiB;qBACjB,gBAAgB;wBAChB,mBAAmB"}
@@ -1,16 +1,18 @@
1
+ declare namespace _exports {
2
+ export { RuleModule, TagNode, BaseNode, CommentNode, DoctypeNode, ScriptTagNode, StyleTagNode, TextNode, NewlineNode, NodeMeta };
3
+ }
1
4
  declare const _exports: RuleModule;
2
5
  export = _exports;
3
- export type RuleModule = import("../types").RuleModule;
4
- export type ProgramNode = import("../types").ProgramNode;
5
- export type TagNode = import("../types").TagNode;
6
- export type BaseNode = import("../types").BaseNode;
7
- export type CommentNode = import("../types").CommentNode;
8
- export type DoctypeNode = import("../types").DoctypeNode;
9
- export type ScriptTagNode = import("../types").ScriptTagNode;
10
- export type StyleTagNode = import("../types").StyleTagNode;
11
- export type TextNode = import("../types").TextNode;
12
- export type NewlineNode = CommentNode | DoctypeNode | ScriptTagNode | StyleTagNode | TagNode | TextNode;
13
- export type NodeMeta = {
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;
15
+ type NodeMeta = {
14
16
  childFirst: NewlineNode | null;
15
17
  childLast: NewlineNode | null;
16
18
  shouldBeNewline: boolean;
@@ -1 +1 @@
1
- {"version":3,"file":"element-newline.d.ts","sourceRoot":"","sources":["../../lib/rules/element-newline.js"],"names":[],"mappings":"wBAoEU,UAAU;;yBAnEN,OAAO,UAAU,EAAE,UAAU;0BAC7B,OAAO,UAAU,EAAE,WAAW;sBAC9B,OAAO,UAAU,EAAE,OAAO;uBAC1B,OAAO,UAAU,EAAE,QAAQ;0BAC3B,OAAO,UAAU,EAAE,WAAW;0BAC9B,OAAO,UAAU,EAAE,WAAW;4BAC9B,OAAO,UAAU,EAAE,aAAa;2BAChC,OAAO,UAAU,EAAE,YAAY;uBAC/B,OAAO,UAAU,EAAE,QAAQ;0BAC3B,WAAW,GAAG,WAAW,GAAG,aAAa,GAAG,YAAY,GAAG,OAAO,GAAG,QAAQ;uBAC9E;IACZ,UAAc,EAAE,WAAW,GAAG,IAAI,CAAC;IACnC,SAAa,EAAE,WAAW,GAAG,IAAI,CAAC;IAClC,eAAmB,EAAE,OAAO,CAAC;CAC1B"}
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,7 +1,10 @@
1
+ declare namespace _exports {
2
+ export { RuleModule, TagNode, ScriptTagNode, StyleTagNode };
3
+ }
1
4
  declare const _exports: RuleModule;
2
5
  export = _exports;
3
- export type RuleModule = import("../types").RuleModule;
4
- export type TagNode = import("../types").TagNode;
5
- export type ScriptTagNode = import("../types").ScriptTagNode;
6
- export type StyleTagNode = import("../types").StyleTagNode;
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
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":"wBAoCU,UAAU;;yBAnCN,OAAO,UAAU,EAAE,UAAU;sBAC7B,OAAO,UAAU,EAAE,OAAO;4BAC1B,OAAO,UAAU,EAAE,aAAa;2BAChC,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;eAC7B,OAAO,UAAU,EAAE,OAAO;qBAC1B,OAAO,UAAU,EAAE,aAAa;oBAChC,OAAO,UAAU,EAAE,YAAY"}
@@ -1,15 +1,18 @@
1
+ declare namespace _exports {
2
+ export { RuleModule, AnyNode, LineNode, BaseNode, TagNode, IndentType, MessageId };
3
+ }
1
4
  declare const _exports: RuleModule;
2
5
  export = _exports;
3
- export type RuleModule = import("../types").RuleModule;
4
- export type AnyNode = import("../types").AnyNode;
5
- export type LineNode = import("../types").LineNode;
6
- export type BaseNode = import("../types").BaseNode;
7
- export type TagNode = import("../types").TagNode;
8
- export type IndentType = {
6
+ type RuleModule = import("../types").RuleModule;
7
+ type AnyNode = import("../types").AnyNode;
8
+ type LineNode = import("../types").LineNode;
9
+ type BaseNode = import("../types").BaseNode;
10
+ type TagNode = import("../types").TagNode;
11
+ type IndentType = {
9
12
  TAB: "tab";
10
13
  SPACE: "space";
11
14
  };
12
- export type MessageId = {
15
+ type MessageId = {
13
16
  WRONG_INDENT: "wrongIndent";
14
17
  };
15
18
  //# sourceMappingURL=indent.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"indent.d.ts","sourceRoot":"","sources":["../../lib/rules/indent.js"],"names":[],"mappings":"wBA8BU,UAAU;;yBA7BN,OAAO,UAAU,EAAE,UAAU;sBAC7B,OAAO,UAAU,EAAE,OAAO;uBAC1B,OAAO,UAAU,EAAE,QAAQ;uBAC3B,OAAO,UAAU,EAAE,QAAQ;sBAC3B,OAAO,UAAU,EAAE,OAAO;;SAE1B,KAAK;WACL,OAAO;;;kBAEP,aAAa"}
1
+ {"version":3,"file":"indent.d.ts","sourceRoot":"","sources":["../../lib/rules/indent.js"],"names":[],"mappings":";;;wBAgCU,UAAU;;kBA/BN,OAAO,UAAU,EAAE,UAAU;eAC7B,OAAO,UAAU,EAAE,OAAO;gBAC1B,OAAO,UAAU,EAAE,QAAQ;gBAC3B,OAAO,UAAU,EAAE,QAAQ;eAC3B,OAAO,UAAU,EAAE,OAAO;;SAE1B,KAAK;WACL,OAAO;;;kBAEP,aAAa"}
@@ -1,7 +1,11 @@
1
+ declare namespace _exports {
2
+ export { RuleModule, TagNode, StyleTagNode, ScriptTagNode, RuleListener };
3
+ }
1
4
  declare const _exports: RuleModule;
2
5
  export = _exports;
3
- export type RuleModule = import("../types").RuleModule;
4
- export type TagNode = import("../types").TagNode;
5
- export type StyleTagNode = import("../types").StyleTagNode;
6
- export type ScriptTagNode = import("../types").ScriptTagNode;
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
11
  //# sourceMappingURL=lowercase.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"lowercase.d.ts","sourceRoot":"","sources":["../../lib/rules/lowercase.js"],"names":[],"mappings":"wBAgBU,UAAU;;yBAfN,OAAO,UAAU,EAAE,UAAU;sBAC7B,OAAO,UAAU,EAAE,OAAO;2BAC1B,OAAO,UAAU,EAAE,YAAY;4BAC/B,OAAO,UAAU,EAAE,aAAa"}
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,7 +1,10 @@
1
+ declare namespace _exports {
2
+ export { RuleModule, TagNode, StyleTagNode, ScriptTagNode };
3
+ }
1
4
  declare const _exports: RuleModule;
2
5
  export = _exports;
3
- export type RuleModule = import("../types").RuleModule;
4
- export type TagNode = import("../types").TagNode;
5
- export type StyleTagNode = import("../types").StyleTagNode;
6
- export type ScriptTagNode = import("../types").ScriptTagNode;
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
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":"wBA8BU,UAAU;;yBA7BN,OAAO,UAAU,EAAE,UAAU;sBAC7B,OAAO,UAAU,EAAE,OAAO;2BAC1B,OAAO,UAAU,EAAE,YAAY;4BAC/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;eAC7B,OAAO,UAAU,EAAE,OAAO;oBAC1B,OAAO,UAAU,EAAE,YAAY;qBAC/B,OAAO,UAAU,EAAE,aAAa"}
@@ -1,7 +1,10 @@
1
+ declare namespace _exports {
2
+ export { RuleModule, TagNode, StyleTagNode, ScriptTagNode };
3
+ }
1
4
  declare const _exports: RuleModule;
2
5
  export = _exports;
3
- export type RuleModule = import("../types").RuleModule;
4
- export type TagNode = import("../types").TagNode;
5
- export type StyleTagNode = import("../types").StyleTagNode;
6
- export type ScriptTagNode = import("../types").ScriptTagNode;
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
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":"wBAeU,UAAU;;yBAdN,OAAO,UAAU,EAAE,UAAU;sBAC7B,OAAO,UAAU,EAAE,OAAO;2BAC1B,OAAO,UAAU,EAAE,YAAY;4BAC/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;eAC7B,OAAO,UAAU,EAAE,OAAO;oBAC1B,OAAO,UAAU,EAAE,YAAY;qBAC/B,OAAO,UAAU,EAAE,aAAa"}
@@ -1,4 +1,7 @@
1
+ declare namespace _exports {
2
+ export { RuleModule };
3
+ }
1
4
  declare const _exports: RuleModule;
2
5
  export = _exports;
3
- export type RuleModule = import("../types").RuleModule;
6
+ type RuleModule = import("../types").RuleModule;
4
7
  //# 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":"wBAYU,UAAU;;yBAXN,OAAO,UAAU,EAAE,UAAU"}
1
+ {"version":3,"file":"no-aria-hidden-body.d.ts","sourceRoot":"","sources":["../../lib/rules/no-aria-hidden-body.js"],"names":[],"mappings":";;;wBAaU,UAAU;;kBAZN,OAAO,UAAU,EAAE,UAAU"}
@@ -1,7 +1,10 @@
1
+ declare namespace _exports {
2
+ export { RuleModule, TagNode, StyleTagNode, ScriptTagNode };
3
+ }
1
4
  declare const _exports: RuleModule;
2
5
  export = _exports;
3
- export type RuleModule = import("../types").RuleModule;
4
- export type TagNode = import("../types").TagNode;
5
- export type StyleTagNode = import("../types").StyleTagNode;
6
- export type ScriptTagNode = import("../types").ScriptTagNode;
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
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":"wBAcU,UAAU;;yBAbN,OAAO,UAAU,EAAE,UAAU;sBAC7B,OAAO,UAAU,EAAE,OAAO;2BAC1B,OAAO,UAAU,EAAE,YAAY;4BAC/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;eAC7B,OAAO,UAAU,EAAE,OAAO;oBAC1B,OAAO,UAAU,EAAE,YAAY;qBAC/B,OAAO,UAAU,EAAE,aAAa"}
@@ -1,7 +1,11 @@
1
+ declare namespace _exports {
2
+ export { RuleModule, TagNode, StyleTagNode, ScriptTagNode, AttributeValueNode };
3
+ }
1
4
  declare const _exports: RuleModule;
2
5
  export = _exports;
3
- export type RuleModule = import("../types").RuleModule;
4
- export type TagNode = import("../types").TagNode;
5
- export type StyleTagNode = import("../types").StyleTagNode;
6
- export type ScriptTagNode = import("../types").ScriptTagNode;
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
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":"wBAeU,UAAU;;yBAdN,OAAO,UAAU,EAAE,UAAU;sBAC7B,OAAO,UAAU,EAAE,OAAO;2BAC1B,OAAO,UAAU,EAAE,YAAY;4BAC/B,OAAO,UAAU,EAAE,aAAa"}
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,15 +1,18 @@
1
+ declare namespace _exports {
2
+ export { RuleModule, AttributeNode, OpenTagEndNode, OpenScriptTagEndNode, OpenStyleTagEndNode, OpenScriptTagStartNode, OpenTagStartNode, OpenStyleTagStartNode, TagNode, StyleTagNode, ScriptTagNode, AnyNode };
3
+ }
1
4
  declare const _exports: RuleModule;
2
5
  export = _exports;
3
- export type RuleModule = import("../types").RuleModule;
4
- export type AttributeNode = import("../types").AttributeNode;
5
- export type OpenTagEndNode = import("../types").OpenTagEndNode;
6
- export type OpenScriptTagEndNode = import("../types").OpenScriptTagEndNode;
7
- export type OpenStyleTagEndNode = import("../types").OpenStyleTagEndNode;
8
- export type OpenScriptTagStartNode = import("../types").OpenScriptTagStartNode;
9
- export type OpenTagStartNode = import("../types").OpenTagStartNode;
10
- export type OpenStyleTagStartNode = import("../types").OpenStyleTagStartNode;
11
- export type TagNode = import("../types").TagNode;
12
- export type StyleTagNode = import("../types").StyleTagNode;
13
- export type ScriptTagNode = import("../types").ScriptTagNode;
14
- export type AnyNode = import("../types").AnyNode;
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;
17
+ type AnyNode = import("../types").AnyNode;
15
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":"wBAiCU,UAAU;;yBAhCN,OAAO,UAAU,EAAE,UAAU;4BAC7B,OAAO,UAAU,EAAE,aAAa;6BAChC,OAAO,UAAU,EAAE,cAAc;mCACjC,OAAO,UAAU,EAAE,oBAAoB;kCACvC,OAAO,UAAU,EAAE,mBAAmB;qCACtC,OAAO,UAAU,EAAE,sBAAsB;+BACzC,OAAO,UAAU,EAAE,gBAAgB;oCACnC,OAAO,UAAU,EAAE,qBAAqB;sBACxC,OAAO,UAAU,EAAE,OAAO;2BAC1B,OAAO,UAAU,EAAE,YAAY;4BAC/B,OAAO,UAAU,EAAE,aAAa;sBAChC,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;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,8 +1,14 @@
1
+ declare namespace _exports {
2
+ export { RuleModule, CommentContentNode, TagNode, CommentNode, ContentNode, TextNode, LineNode, Range };
3
+ }
1
4
  declare const _exports: RuleModule;
2
5
  export = _exports;
3
- export type RuleModule = import("../types").RuleModule;
4
- export type ProgramNode = import("../types").ProgramNode;
5
- export type CommentContentNode = import("es-html-parser").CommentContentNode;
6
- export type ContentNode = import("../types").ContentNode;
7
- export type TextNode = import("../types").TextNode;
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;
8
14
  //# 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":"wBAeU,UAAU;;yBAdN,OAAO,UAAU,EAAE,UAAU;0BAC7B,OAAO,UAAU,EAAE,WAAW;iCAC9B,OAAO,gBAAgB,EAAE,kBAAkB;0BAC3C,OAAO,UAAU,EAAE,WAAW;uBAC9B,OAAO,UAAU,EAAE,QAAQ"}
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,4 +1,8 @@
1
+ declare namespace _exports {
2
+ export { RuleModule, RuleListener };
3
+ }
1
4
  declare const _exports: RuleModule;
2
5
  export = _exports;
3
- export type RuleModule = import("../types").RuleModule;
6
+ type RuleModule = import("../types").RuleModule;
7
+ type RuleListener = import("../types").RuleListener;
4
8
  //# 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":"wBAYU,UAAU;;yBAXN,OAAO,UAAU,EAAE,UAAU"}
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,5 +1,11 @@
1
+ declare namespace _exports {
2
+ export { RuleModule, DocumentNode, AnyToken, CommentContentNode, TextNode };
3
+ }
1
4
  declare const _exports: RuleModule;
2
5
  export = _exports;
3
- export type RuleModule = import("../types").RuleModule;
4
- export type ProgramNode = import("../types").ProgramNode;
6
+ type RuleModule = import("../types").RuleModule;
7
+ type DocumentNode = import("es-html-parser").DocumentNode;
8
+ type AnyToken = import("es-html-parser").AnyToken;
9
+ type CommentContentNode = import("es-html-parser").CommentContentNode;
10
+ type TextNode = import("es-html-parser").TextNode;
5
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":"wBAYU,UAAU;;yBAXN,OAAO,UAAU,EAAE,UAAU;0BAC7B,OAAO,UAAU,EAAE,WAAW"}
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,5 +1,8 @@
1
+ declare namespace _exports {
2
+ export { RuleModule, TagNode };
3
+ }
1
4
  declare const _exports: RuleModule;
2
5
  export = _exports;
3
- export type RuleModule = import("../types").RuleModule;
4
- export type TagNode = import("../types").TagNode;
6
+ type RuleModule = import("../types").RuleModule;
7
+ type TagNode = import("../types").TagNode;
5
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;;yBAXN,OAAO,UAAU,EAAE,UAAU;sBAC7B,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;eAC7B,OAAO,UAAU,EAAE,OAAO"}
@@ -1,4 +1,7 @@
1
+ declare namespace _exports {
2
+ export { RuleModule };
3
+ }
1
4
  declare const _exports: RuleModule;
2
5
  export = _exports;
3
- export type RuleModule = import("../types").RuleModule;
6
+ type RuleModule = import("../types").RuleModule;
4
7
  //# 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":"wBAYU,UAAU;;yBAXN,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"}
@@ -1,4 +1,7 @@
1
+ declare namespace _exports {
2
+ export { RuleModule };
3
+ }
1
4
  declare const _exports: RuleModule;
2
5
  export = _exports;
3
- export type RuleModule = import("../types").RuleModule;
6
+ type RuleModule = import("../types").RuleModule;
4
7
  //# 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":"wBAaU,UAAU;;yBAZN,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"}
@@ -1,7 +1,10 @@
1
+ declare namespace _exports {
2
+ export { RuleModule, TagNode, StyleTagNode, ScriptTagNode };
3
+ }
1
4
  declare const _exports: RuleModule;
2
5
  export = _exports;
3
- export type RuleModule = import("../types").RuleModule;
4
- export type TagNode = import("../types").TagNode;
5
- export type StyleTagNode = import("../types").StyleTagNode;
6
- export type ScriptTagNode = import("../types").ScriptTagNode;
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
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":"wBAeU,UAAU;;yBAdN,OAAO,UAAU,EAAE,UAAU;sBAC7B,OAAO,UAAU,EAAE,OAAO;2BAC1B,OAAO,UAAU,EAAE,YAAY;4BAC/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;eAC7B,OAAO,UAAU,EAAE,OAAO;oBAC1B,OAAO,UAAU,EAAE,YAAY;qBAC/B,OAAO,UAAU,EAAE,aAAa"}