@html-eslint/eslint-plugin 0.35.0-alpha.0 → 0.35.1

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 (182) hide show
  1. package/lib/rules/attrs-newline.js +11 -7
  2. package/lib/rules/element-newline.js +172 -160
  3. package/lib/rules/id-naming-convention.js +10 -4
  4. package/lib/rules/indent/indent-level.js +1 -1
  5. package/lib/rules/indent/indent.js +28 -15
  6. package/lib/rules/lowercase.js +4 -4
  7. package/lib/rules/max-element-depth.js +8 -5
  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-aria-hidden-body.js +1 -1
  11. package/lib/rules/no-duplicate-attrs.js +4 -4
  12. package/lib/rules/no-duplicate-id.js +5 -5
  13. package/lib/rules/no-extra-spacing-attrs.js +18 -12
  14. package/lib/rules/no-extra-spacing-text.js +8 -5
  15. package/lib/rules/no-heading-inside-button.js +1 -1
  16. package/lib/rules/no-inline-styles.js +1 -1
  17. package/lib/rules/no-invalid-role.js +1 -1
  18. package/lib/rules/no-multiple-empty-lines.js +8 -5
  19. package/lib/rules/no-multiple-h1.js +2 -2
  20. package/lib/rules/no-nested-interactive.js +2 -2
  21. package/lib/rules/no-non-scalable-viewport.js +1 -1
  22. package/lib/rules/no-obsolete-tags.js +1 -1
  23. package/lib/rules/no-positive-tabindex.js +4 -4
  24. package/lib/rules/no-restricted-attr-values.js +5 -5
  25. package/lib/rules/no-restricted-attrs.js +8 -7
  26. package/lib/rules/no-script-style-type.js +4 -4
  27. package/lib/rules/no-skip-heading-levels.js +2 -2
  28. package/lib/rules/no-target-blank.js +1 -1
  29. package/lib/rules/no-trailing-spaces.js +3 -3
  30. package/lib/rules/prefer-https.js +5 -5
  31. package/lib/rules/quotes.js +7 -5
  32. package/lib/rules/require-attrs.js +7 -5
  33. package/lib/rules/require-button-type.js +1 -1
  34. package/lib/rules/require-closing-tags.js +6 -2
  35. package/lib/rules/require-doctype.js +1 -1
  36. package/lib/rules/require-explicit-size.js +8 -3
  37. package/lib/rules/require-form-method.js +1 -1
  38. package/lib/rules/require-frame-title.js +1 -1
  39. package/lib/rules/require-img-alt.js +9 -8
  40. package/lib/rules/require-input-label.js +2 -2
  41. package/lib/rules/require-lang.js +4 -7
  42. package/lib/rules/require-li-container.js +1 -1
  43. package/lib/rules/require-meta-charset.js +3 -3
  44. package/lib/rules/require-meta-description.js +3 -3
  45. package/lib/rules/require-meta-viewport.js +3 -3
  46. package/lib/rules/require-open-graph-protocol.js +6 -3
  47. package/lib/rules/require-title.js +4 -4
  48. package/lib/rules/sort-attrs.js +11 -11
  49. package/lib/rules/utils/node.js +31 -19
  50. package/lib/rules/utils/settings.js +3 -3
  51. package/lib/rules/utils/source-code.js +1 -1
  52. package/lib/rules/utils/visitors.js +1 -1
  53. package/lib/types/ast.d.ts +4 -194
  54. package/lib/types/index.d.ts +1 -1
  55. package/lib/types/rule.d.ts +41 -10
  56. package/package.json +11 -20
  57. package/types/configs/recommended.d.ts +0 -20
  58. package/types/configs/recommended.d.ts.map +0 -1
  59. package/types/constants/index.d.ts +0 -5
  60. package/types/constants/index.d.ts.map +0 -1
  61. package/types/constants/obsolete-tags.d.ts +0 -3
  62. package/types/constants/obsolete-tags.d.ts.map +0 -1
  63. package/types/constants/rule-category.d.ts +0 -5
  64. package/types/constants/rule-category.d.ts.map +0 -1
  65. package/types/constants/svg-camel-case-attributes.d.ts +0 -3
  66. package/types/constants/svg-camel-case-attributes.d.ts.map +0 -1
  67. package/types/constants/void-elements.d.ts +0 -3
  68. package/types/constants/void-elements.d.ts.map +0 -1
  69. package/types/index.d.ts +0 -14
  70. package/types/index.d.ts.map +0 -1
  71. package/types/rules/attrs-newline.d.ts +0 -13
  72. package/types/rules/attrs-newline.d.ts.map +0 -1
  73. package/types/rules/element-newline.d.ts +0 -19
  74. package/types/rules/element-newline.d.ts.map +0 -1
  75. package/types/rules/id-naming-convention.d.ts +0 -10
  76. package/types/rules/id-naming-convention.d.ts.map +0 -1
  77. package/types/rules/indent/indent-level.d.ts +0 -55
  78. package/types/rules/indent/indent-level.d.ts.map +0 -1
  79. package/types/rules/indent/indent.d.ts +0 -30
  80. package/types/rules/indent/indent.d.ts.map +0 -1
  81. package/types/rules/indent/index.d.ts +0 -3
  82. package/types/rules/indent/index.d.ts.map +0 -1
  83. package/types/rules/index.d.ts +0 -51
  84. package/types/rules/index.d.ts.map +0 -1
  85. package/types/rules/lowercase.d.ts +0 -10
  86. package/types/rules/lowercase.d.ts.map +0 -1
  87. package/types/rules/max-element-depth.d.ts +0 -10
  88. package/types/rules/max-element-depth.d.ts.map +0 -1
  89. package/types/rules/no-abstract-roles.d.ts +0 -10
  90. package/types/rules/no-abstract-roles.d.ts.map +0 -1
  91. package/types/rules/no-accesskey-attrs.d.ts +0 -10
  92. package/types/rules/no-accesskey-attrs.d.ts.map +0 -1
  93. package/types/rules/no-aria-hidden-body.d.ts +0 -7
  94. package/types/rules/no-aria-hidden-body.d.ts.map +0 -1
  95. package/types/rules/no-duplicate-attrs.d.ts +0 -10
  96. package/types/rules/no-duplicate-attrs.d.ts.map +0 -1
  97. package/types/rules/no-duplicate-id.d.ts +0 -11
  98. package/types/rules/no-duplicate-id.d.ts.map +0 -1
  99. package/types/rules/no-extra-spacing-attrs.d.ts +0 -18
  100. package/types/rules/no-extra-spacing-attrs.d.ts.map +0 -1
  101. package/types/rules/no-extra-spacing-text.d.ts +0 -13
  102. package/types/rules/no-extra-spacing-text.d.ts.map +0 -1
  103. package/types/rules/no-heading-inside-button.d.ts +0 -7
  104. package/types/rules/no-heading-inside-button.d.ts.map +0 -1
  105. package/types/rules/no-inline-styles.d.ts +0 -7
  106. package/types/rules/no-inline-styles.d.ts.map +0 -1
  107. package/types/rules/no-invalid-role.d.ts +0 -7
  108. package/types/rules/no-invalid-role.d.ts.map +0 -1
  109. package/types/rules/no-multiple-empty-lines.d.ts +0 -11
  110. package/types/rules/no-multiple-empty-lines.d.ts.map +0 -1
  111. package/types/rules/no-multiple-h1.d.ts +0 -8
  112. package/types/rules/no-multiple-h1.d.ts.map +0 -1
  113. package/types/rules/no-nested-interactive.d.ts +0 -8
  114. package/types/rules/no-nested-interactive.d.ts.map +0 -1
  115. package/types/rules/no-non-scalable-viewport.d.ts +0 -7
  116. package/types/rules/no-non-scalable-viewport.d.ts.map +0 -1
  117. package/types/rules/no-obsolete-tags.d.ts +0 -7
  118. package/types/rules/no-obsolete-tags.d.ts.map +0 -1
  119. package/types/rules/no-positive-tabindex.d.ts +0 -10
  120. package/types/rules/no-positive-tabindex.d.ts.map +0 -1
  121. package/types/rules/no-restricted-attr-values.d.ts +0 -16
  122. package/types/rules/no-restricted-attr-values.d.ts.map +0 -1
  123. package/types/rules/no-restricted-attrs.d.ts +0 -16
  124. package/types/rules/no-restricted-attrs.d.ts.map +0 -1
  125. package/types/rules/no-script-style-type.d.ts +0 -10
  126. package/types/rules/no-script-style-type.d.ts.map +0 -1
  127. package/types/rules/no-skip-heading-levels.d.ts +0 -8
  128. package/types/rules/no-skip-heading-levels.d.ts.map +0 -1
  129. package/types/rules/no-target-blank.d.ts +0 -7
  130. package/types/rules/no-target-blank.d.ts.map +0 -1
  131. package/types/rules/no-trailing-spaces.d.ts +0 -9
  132. package/types/rules/no-trailing-spaces.d.ts.map +0 -1
  133. package/types/rules/prefer-https.d.ts +0 -11
  134. package/types/rules/prefer-https.d.ts.map +0 -1
  135. package/types/rules/quotes.d.ts +0 -12
  136. package/types/rules/quotes.d.ts.map +0 -1
  137. package/types/rules/require-attrs.d.ts +0 -15
  138. package/types/rules/require-attrs.d.ts.map +0 -1
  139. package/types/rules/require-button-type.d.ts +0 -7
  140. package/types/rules/require-button-type.d.ts.map +0 -1
  141. package/types/rules/require-closing-tags.d.ts +0 -8
  142. package/types/rules/require-closing-tags.d.ts.map +0 -1
  143. package/types/rules/require-doctype.d.ts +0 -7
  144. package/types/rules/require-doctype.d.ts.map +0 -1
  145. package/types/rules/require-explicit-size.d.ts +0 -9
  146. package/types/rules/require-explicit-size.d.ts.map +0 -1
  147. package/types/rules/require-form-method.d.ts +0 -7
  148. package/types/rules/require-form-method.d.ts.map +0 -1
  149. package/types/rules/require-frame-title.d.ts +0 -7
  150. package/types/rules/require-frame-title.d.ts.map +0 -1
  151. package/types/rules/require-img-alt.d.ts +0 -8
  152. package/types/rules/require-img-alt.d.ts.map +0 -1
  153. package/types/rules/require-input-label.d.ts +0 -8
  154. package/types/rules/require-input-label.d.ts.map +0 -1
  155. package/types/rules/require-lang.d.ts +0 -7
  156. package/types/rules/require-lang.d.ts.map +0 -1
  157. package/types/rules/require-li-container.d.ts +0 -7
  158. package/types/rules/require-li-container.d.ts.map +0 -1
  159. package/types/rules/require-meta-charset.d.ts +0 -9
  160. package/types/rules/require-meta-charset.d.ts.map +0 -1
  161. package/types/rules/require-meta-description.d.ts +0 -9
  162. package/types/rules/require-meta-description.d.ts.map +0 -1
  163. package/types/rules/require-meta-viewport.d.ts +0 -9
  164. package/types/rules/require-meta-viewport.d.ts.map +0 -1
  165. package/types/rules/require-open-graph-protocol.d.ts +0 -9
  166. package/types/rules/require-open-graph-protocol.d.ts.map +0 -1
  167. package/types/rules/require-title.d.ts +0 -10
  168. package/types/rules/require-title.d.ts.map +0 -1
  169. package/types/rules/sort-attrs.d.ts +0 -10
  170. package/types/rules/sort-attrs.d.ts.map +0 -1
  171. package/types/rules/utils/array.d.ts +0 -17
  172. package/types/rules/utils/array.d.ts.map +0 -1
  173. package/types/rules/utils/naming.d.ts +0 -25
  174. package/types/rules/utils/naming.d.ts.map +0 -1
  175. package/types/rules/utils/node.d.ts +0 -111
  176. package/types/rules/utils/node.d.ts.map +0 -1
  177. package/types/rules/utils/settings.d.ts +0 -19
  178. package/types/rules/utils/settings.d.ts.map +0 -1
  179. package/types/rules/utils/source-code.d.ts +0 -9
  180. package/types/rules/utils/source-code.d.ts.map +0 -1
  181. package/types/rules/utils/visitors.d.ts +0 -10
  182. package/types/rules/utils/visitors.d.ts.map +0 -1
@@ -1,55 +0,0 @@
1
- export = IndentLevel;
2
- /**
3
- * @typedef {import("../../types").AnyNode} AnyNode
4
- * @typedef {{ [key in AnyNode['type']]?: number}} IncLevelOptions
5
- * @typedef {(node: AnyNode) => number} GetIncreasingLevel
6
- */
7
- declare class IndentLevel {
8
- /**
9
- * @param {Object} config
10
- * @param {GetIncreasingLevel} config.getIncreasingLevel
11
- */
12
- constructor(config: {
13
- getIncreasingLevel: GetIncreasingLevel;
14
- });
15
- /**
16
- * @member
17
- * @private
18
- * @type {number}
19
- */
20
- private level;
21
- /**
22
- * @member
23
- * @private
24
- * @type {number}
25
- */
26
- private baseLevel;
27
- /**
28
- * @member
29
- * @private
30
- */
31
- private getInc;
32
- /**
33
- * @returns {number}
34
- */
35
- value(): number;
36
- /**
37
- * @param {AnyNode} node
38
- */
39
- indent(node: AnyNode): void;
40
- /**
41
- * @param {AnyNode} node
42
- */
43
- dedent(node: AnyNode): void;
44
- /**
45
- * @param {number} base
46
- */
47
- setBase(base: number): void;
48
- }
49
- declare namespace IndentLevel {
50
- export { AnyNode, IncLevelOptions, GetIncreasingLevel };
51
- }
52
- type AnyNode = import("../../types").AnyNode;
53
- type IncLevelOptions = { [key in AnyNode["type"]]?: number; };
54
- type GetIncreasingLevel = (node: AnyNode) => number;
55
- //# sourceMappingURL=indent-level.d.ts.map
@@ -1 +0,0 @@
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,aAAa,EAAE,OAAO;uBAC7B,GAAG,GAAG,IAAI,OAAO,CAAC,MAAM,CAAC,CAAC,CAAC,EAAE,MAAM,GAAC;0BACpC,CAAC,IAAI,EAAE,OAAO,KAAK,MAAM"}
@@ -1,30 +0,0 @@
1
- declare namespace _exports {
2
- export { RuleModule, AnyNode, Line, Tag, RuleListener, Context, TemplateText, Token, SourceCode, Range, SourceLocation, TemplateLiteral, IndentType, MessageId, IndentOptionInfo };
3
- }
4
- declare const _exports: RuleModule;
5
- export = _exports;
6
- type RuleModule = import("../../types").RuleModule;
7
- type AnyNode = import("../../types").AnyNode;
8
- type Line = import("../../types").Line;
9
- type Tag = import("../../types").Tag;
10
- type RuleListener = import("../../types").RuleListener;
11
- type Context = import("../../types").Context;
12
- type TemplateText = import("../../types").TemplateText;
13
- type Token = import("eslint").AST.Token;
14
- type SourceCode = import("eslint").SourceCode;
15
- type Range = import("eslint").AST.Range;
16
- type SourceLocation = import("eslint").AST.SourceLocation;
17
- type TemplateLiteral = import("../../types").TemplateLiteral;
18
- type IndentType = {
19
- TAB: "tab";
20
- SPACE: "space";
21
- };
22
- type MessageId = {
23
- WRONG_INDENT: "wrongIndent";
24
- };
25
- type IndentOptionInfo = {
26
- indentType: IndentType["TAB"] | IndentType["SPACE"];
27
- indentSize: number;
28
- indentChar: string;
29
- };
30
- //# sourceMappingURL=indent.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"indent.d.ts","sourceRoot":"","sources":["../../../lib/rules/indent/indent.js"],"names":[],"mappings":";;;wBAwDU,UAAU;;kBAvDN,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;oBAC7B,OAAO,aAAa,EAAE,YAAY;aAClC,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"}
@@ -1,3 +0,0 @@
1
- export = indent;
2
- import indent = require("./indent");
3
- //# sourceMappingURL=index.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../lib/rules/indent/index.js"],"names":[],"mappings":""}
@@ -1,51 +0,0 @@
1
- declare const _exports: {
2
- "require-lang": import("../types").RuleModule;
3
- "require-img-alt": import("../types").RuleModule;
4
- "require-doctype": import("../types").RuleModule;
5
- "require-title": import("../types").RuleModule;
6
- "no-duplicate-id": import("../types").RuleModule;
7
- "no-inline-styles": import("../types").RuleModule;
8
- "no-multiple-h1": import("../types").RuleModule;
9
- "no-extra-spacing-attrs": import("../types").RuleModule;
10
- "no-extra-spacing-text": import("../types").RuleModule;
11
- "attrs-newline": import("../types").RuleModule;
12
- "element-newline": import("../types").RuleModule;
13
- "no-skip-heading-levels": import("../types").RuleModule;
14
- "require-li-container": import("../types").RuleModule;
15
- indent: import("../types").RuleModule;
16
- quotes: import("../types").RuleModule;
17
- "id-naming-convention": import("../types").RuleModule;
18
- "no-obsolete-tags": import("../types").RuleModule;
19
- "require-attrs": import("../types").RuleModule;
20
- "require-closing-tags": import("../types").RuleModule;
21
- "require-meta-description": import("../types").RuleModule;
22
- "require-frame-title": import("../types").RuleModule;
23
- "no-non-scalable-viewport": import("../types").RuleModule;
24
- "no-positive-tabindex": import("../types").RuleModule;
25
- "require-meta-viewport": import("../types").RuleModule;
26
- "require-meta-charset": import("../types").RuleModule;
27
- "no-target-blank": import("../types").RuleModule;
28
- "no-duplicate-attrs": import("../types").RuleModule;
29
- "no-abstract-roles": import("../types").RuleModule;
30
- "require-button-type": import("../types").RuleModule;
31
- "no-aria-hidden-body": import("../types").RuleModule;
32
- "no-multiple-empty-lines": import("../types").RuleModule;
33
- "no-accesskey-attrs": import("../types").RuleModule;
34
- "no-restricted-attrs": import("../types").RuleModule;
35
- "no-trailing-spaces": import("../types").RuleModule;
36
- "no-restricted-attr-values": import("../types").RuleModule;
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;
41
- lowercase: import("../types").RuleModule;
42
- "require-open-graph-protocol": import("../types").RuleModule;
43
- "require-form-method": import("../types").RuleModule;
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;
49
- };
50
- export = _exports;
51
- //# sourceMappingURL=index.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../lib/rules/index.js"],"names":[],"mappings":""}
@@ -1,10 +0,0 @@
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=lowercase.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"lowercase.d.ts","sourceRoot":"","sources":["../../lib/rules/lowercase.js"],"names":[],"mappings":";;;wBAkBU,UAAU;;kBAjBN,OAAO,UAAU,EAAE,UAAU;WAC7B,OAAO,UAAU,EAAE,GAAG;gBACtB,OAAO,UAAU,EAAE,QAAQ;iBAC3B,OAAO,UAAU,EAAE,SAAS"}
@@ -1,10 +0,0 @@
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
@@ -1 +0,0 @@
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 +0,0 @@
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=no-abstract-roles.d.ts.map
@@ -1 +0,0 @@
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 +0,0 @@
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=no-accesskey-attrs.d.ts.map
@@ -1 +0,0 @@
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,7 +0,0 @@
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-aria-hidden-body.d.ts.map
@@ -1 +0,0 @@
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,10 +0,0 @@
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=no-duplicate-attrs.d.ts.map
@@ -1 +0,0 @@
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 +0,0 @@
1
- declare namespace _exports {
2
- export { RuleModule, Tag, StyleTag, ScriptTag, AttributeValue };
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
- type AttributeValue = import("../types").AttributeValue;
11
- //# sourceMappingURL=no-duplicate-id.d.ts.map
@@ -1 +0,0 @@
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 +0,0 @@
1
- declare namespace _exports {
2
- export { RuleModule, Attribute, OpenTagEnd, OpenScriptTagEnd, OpenStyleTagEnd, OpenScriptTagStart, OpenTagStart, OpenStyleTagStart, Tag, StyleTag, ScriptTag, AnyNode };
3
- }
4
- declare const _exports: RuleModule;
5
- export = _exports;
6
- type RuleModule = import("../types").RuleModule;
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
- type AnyNode = import("../types").AnyNode;
18
- //# sourceMappingURL=no-extra-spacing-attrs.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"no-extra-spacing-attrs.d.ts","sourceRoot":"","sources":["../../lib/rules/no-extra-spacing-attrs.js"],"names":[],"mappings":";;;wBAmCU,UAAU;;kBAlCN,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,13 +0,0 @@
1
- declare namespace _exports {
2
- export { RuleModule, CommentContent, Tag, Comment, Text, Line, Range };
3
- }
4
- declare const _exports: RuleModule;
5
- export = _exports;
6
- type RuleModule = import("../types").RuleModule;
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;
13
- //# sourceMappingURL=no-extra-spacing-text.d.ts.map
@@ -1 +0,0 @@
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"}
@@ -1,7 +0,0 @@
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
@@ -1 +0,0 @@
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,7 +0,0 @@
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-inline-styles.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"no-inline-styles.d.ts","sourceRoot":"","sources":["../../lib/rules/no-inline-styles.js"],"names":[],"mappings":";;;wBAYU,UAAU;;kBAXN,OAAO,UAAU,EAAE,UAAU"}
@@ -1,7 +0,0 @@
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
@@ -1 +0,0 @@
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 +0,0 @@
1
- declare namespace _exports {
2
- export { AnyToken, RuleModule, Document, CommentContent, Text };
3
- }
4
- declare const _exports: RuleModule;
5
- export = _exports;
6
- type AnyToken = import("es-html-parser").AnyToken;
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
- //# sourceMappingURL=no-multiple-empty-lines.d.ts.map
@@ -1 +0,0 @@
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 +0,0 @@
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-multiple-h1.d.ts.map
@@ -1 +0,0 @@
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"}
@@ -1,8 +0,0 @@
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
@@ -1 +0,0 @@
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,7 +0,0 @@
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-non-scalable-viewport.d.ts.map
@@ -1 +0,0 @@
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,7 +0,0 @@
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-obsolete-tags.d.ts.map
@@ -1 +0,0 @@
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,10 +0,0 @@
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=no-positive-tabindex.d.ts.map
@@ -1 +0,0 @@
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,16 +0,0 @@
1
- declare namespace _exports {
2
- export { RuleModule, StyleTag, Attribute, Tag, ScriptTag, Options };
3
- }
4
- declare const _exports: RuleModule;
5
- export = _exports;
6
- type RuleModule = import("../types").RuleModule;
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
- type Options = {
12
- attrPatterns: string[];
13
- attrValuePatterns: string[];
14
- message?: string;
15
- }[];
16
- //# sourceMappingURL=no-restricted-attr-values.d.ts.map
@@ -1 +0,0 @@
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,16 +0,0 @@
1
- declare namespace _exports {
2
- export { RuleModule, StyleTag, Attribute, Tag, ScriptTag, Options };
3
- }
4
- declare const _exports: RuleModule;
5
- export = _exports;
6
- type RuleModule = import("../types").RuleModule;
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
- type Options = {
12
- tagPatterns: string[];
13
- attrPatterns: string[];
14
- message?: string;
15
- }[];
16
- //# sourceMappingURL=no-restricted-attrs.d.ts.map
@@ -1 +0,0 @@
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 +0,0 @@
1
- declare namespace _exports {
2
- export { RuleModule, StyleTag, Tag, ScriptTag };
3
- }
4
- declare const _exports: RuleModule;
5
- export = _exports;
6
- type RuleModule = import("../types").RuleModule;
7
- type StyleTag = import("../types").StyleTag;
8
- type Tag = import("../types").Tag;
9
- type ScriptTag = import("../types").ScriptTag;
10
- //# sourceMappingURL=no-script-style-type.d.ts.map
@@ -1 +0,0 @@
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 +0,0 @@
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-skip-heading-levels.d.ts.map
@@ -1 +0,0 @@
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,7 +0,0 @@
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-target-blank.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"no-target-blank.d.ts","sourceRoot":"","sources":["../../lib/rules/no-target-blank.js"],"names":[],"mappings":";;;wBAaU,UAAU;;kBAZN,OAAO,UAAU,EAAE,UAAU"}
@@ -1,9 +0,0 @@
1
- declare namespace _exports {
2
- export { RuleModule, CommentContent, Text };
3
- }
4
- declare const _exports: RuleModule;
5
- export = _exports;
6
- type RuleModule = import("../types").RuleModule;
7
- type CommentContent = import("../types").CommentContent;
8
- type Text = import("../types").Text;
9
- //# sourceMappingURL=no-trailing-spaces.d.ts.map
@@ -1 +0,0 @@
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"}
@@ -1,11 +0,0 @@
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
@@ -1 +0,0 @@
1
- {"version":3,"file":"prefer-https.d.ts","sourceRoot":"","sources":["../../lib/rules/prefer-https.js"],"names":[],"mappings":";;;wBAmEU,UAAU;;kBAlEN,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 +0,0 @@
1
- declare namespace _exports {
2
- export { Range, RuleModule, Attribute, Tag, ScriptTag, StyleTag };
3
- }
4
- declare const _exports: RuleModule;
5
- export = _exports;
6
- type Range = import("eslint").AST.Range;
7
- type RuleModule = import("../types").RuleModule;
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
- //# sourceMappingURL=quotes.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"quotes.d.ts","sourceRoot":"","sources":["../../lib/rules/quotes.js"],"names":[],"mappings":";;;wBA0BU,UAAU;;aAzBN,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"}
@@ -1,15 +0,0 @@
1
- declare namespace _exports {
2
- export { RuleModule, Tag, ScriptTag, StyleTag, Option };
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 StyleTag = import("../types").StyleTag;
10
- type Option = {
11
- tag: string;
12
- attr: string;
13
- value: string | undefined;
14
- };
15
- //# sourceMappingURL=require-attrs.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"require-attrs.d.ts","sourceRoot":"","sources":["../../lib/rules/require-attrs.js"],"names":[],"mappings":";;;wBAsBU,UAAU;;kBArBN,OAAO,UAAU,EAAE,UAAU;WAC7B,OAAO,UAAU,EAAE,GAAG;iBACtB,OAAO,UAAU,EAAE,SAAS;gBAC5B,OAAO,UAAU,EAAE,QAAQ;;SAG3B,MAAM;UACN,MAAM;WACN,MAAM,GAAG,SAAS"}
@@ -1,7 +0,0 @@
1
- declare namespace _exports {
2
- export { RuleModule };
3
- }
4
- declare const _exports: RuleModule;
5
- export = _exports;
6
- type RuleModule = import("../types").RuleModule;
7
- //# sourceMappingURL=require-button-type.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"require-button-type.d.ts","sourceRoot":"","sources":["../../lib/rules/require-button-type.js"],"names":[],"mappings":";;;wBAgBU,UAAU;;kBAfN,OAAO,UAAU,EAAE,UAAU"}
@@ -1,8 +0,0 @@
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=require-closing-tags.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"require-closing-tags.d.ts","sourceRoot":"","sources":["../../lib/rules/require-closing-tags.js"],"names":[],"mappings":";;;wBAiBU,UAAU;;kBAhBN,OAAO,UAAU,EAAE,UAAU;WAC7B,OAAO,UAAU,EAAE,GAAG"}