@html-eslint/eslint-plugin 0.35.1 → 0.35.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/exports.ts +2 -0
- package/lib/index.js +6 -1
- package/lib/types/{rule.d.ts → rule.ts} +1 -1
- package/package.json +10 -8
- package/types/configs/recommended.d.ts +20 -0
- package/types/configs/recommended.d.ts.map +1 -0
- package/types/constants/index.d.ts +5 -0
- package/types/constants/index.d.ts.map +1 -0
- package/types/constants/obsolete-tags.d.ts +3 -0
- package/types/constants/obsolete-tags.d.ts.map +1 -0
- package/types/constants/rule-category.d.ts +5 -0
- package/types/constants/rule-category.d.ts.map +1 -0
- package/types/constants/svg-camel-case-attributes.d.ts +3 -0
- package/types/constants/svg-camel-case-attributes.d.ts.map +1 -0
- package/types/constants/void-elements.d.ts +3 -0
- package/types/constants/void-elements.d.ts.map +1 -0
- package/types/exports.d.ts +3 -0
- package/types/exports.d.ts.map +1 -0
- package/types/index.d.ts +89 -0
- package/types/index.d.ts.map +1 -0
- package/types/rules/attrs-newline.d.ts +17 -0
- package/types/rules/attrs-newline.d.ts.map +1 -0
- package/types/rules/element-newline.d.ts +22 -0
- package/types/rules/element-newline.d.ts.map +1 -0
- package/types/rules/id-naming-convention.d.ts +15 -0
- package/types/rules/id-naming-convention.d.ts.map +1 -0
- package/types/rules/indent/indent-level.d.ts +55 -0
- package/types/rules/indent/indent-level.d.ts.map +1 -0
- package/types/rules/indent/indent.d.ts +38 -0
- package/types/rules/indent/indent.d.ts.map +1 -0
- package/types/rules/indent/index.d.ts +3 -0
- package/types/rules/indent/index.d.ts.map +1 -0
- package/types/rules/index.d.ts +68 -0
- package/types/rules/index.d.ts.map +1 -0
- package/types/rules/lowercase.d.ts +10 -0
- package/types/rules/lowercase.d.ts.map +1 -0
- package/types/rules/max-element-depth.d.ts +13 -0
- package/types/rules/max-element-depth.d.ts.map +1 -0
- package/types/rules/no-abstract-roles.d.ts +10 -0
- package/types/rules/no-abstract-roles.d.ts.map +1 -0
- package/types/rules/no-accesskey-attrs.d.ts +10 -0
- package/types/rules/no-accesskey-attrs.d.ts.map +1 -0
- package/types/rules/no-aria-hidden-body.d.ts +7 -0
- package/types/rules/no-aria-hidden-body.d.ts.map +1 -0
- package/types/rules/no-duplicate-attrs.d.ts +10 -0
- package/types/rules/no-duplicate-attrs.d.ts.map +1 -0
- package/types/rules/no-duplicate-id.d.ts +11 -0
- package/types/rules/no-duplicate-id.d.ts.map +1 -0
- package/types/rules/no-extra-spacing-attrs.d.ts +24 -0
- package/types/rules/no-extra-spacing-attrs.d.ts.map +1 -0
- package/types/rules/no-extra-spacing-text.d.ts +16 -0
- package/types/rules/no-extra-spacing-text.d.ts.map +1 -0
- package/types/rules/no-heading-inside-button.d.ts +7 -0
- package/types/rules/no-heading-inside-button.d.ts.map +1 -0
- package/types/rules/no-inline-styles.d.ts +7 -0
- package/types/rules/no-inline-styles.d.ts.map +1 -0
- package/types/rules/no-invalid-role.d.ts +7 -0
- package/types/rules/no-invalid-role.d.ts.map +1 -0
- package/types/rules/no-multiple-empty-lines.d.ts +14 -0
- package/types/rules/no-multiple-empty-lines.d.ts.map +1 -0
- package/types/rules/no-multiple-h1.d.ts +8 -0
- package/types/rules/no-multiple-h1.d.ts.map +1 -0
- package/types/rules/no-nested-interactive.d.ts +8 -0
- package/types/rules/no-nested-interactive.d.ts.map +1 -0
- package/types/rules/no-non-scalable-viewport.d.ts +7 -0
- package/types/rules/no-non-scalable-viewport.d.ts.map +1 -0
- package/types/rules/no-obsolete-tags.d.ts +7 -0
- package/types/rules/no-obsolete-tags.d.ts.map +1 -0
- package/types/rules/no-positive-tabindex.d.ts +10 -0
- package/types/rules/no-positive-tabindex.d.ts.map +1 -0
- package/types/rules/no-restricted-attr-values.d.ts +16 -0
- package/types/rules/no-restricted-attr-values.d.ts.map +1 -0
- package/types/rules/no-restricted-attrs.d.ts +16 -0
- package/types/rules/no-restricted-attrs.d.ts.map +1 -0
- package/types/rules/no-script-style-type.d.ts +10 -0
- package/types/rules/no-script-style-type.d.ts.map +1 -0
- package/types/rules/no-skip-heading-levels.d.ts +8 -0
- package/types/rules/no-skip-heading-levels.d.ts.map +1 -0
- package/types/rules/no-target-blank.d.ts +7 -0
- package/types/rules/no-target-blank.d.ts.map +1 -0
- package/types/rules/no-trailing-spaces.d.ts +9 -0
- package/types/rules/no-trailing-spaces.d.ts.map +1 -0
- package/types/rules/prefer-https.d.ts +11 -0
- package/types/rules/prefer-https.d.ts.map +1 -0
- package/types/rules/quotes.d.ts +13 -0
- package/types/rules/quotes.d.ts.map +1 -0
- package/types/rules/require-attrs.d.ts +15 -0
- package/types/rules/require-attrs.d.ts.map +1 -0
- package/types/rules/require-button-type.d.ts +7 -0
- package/types/rules/require-button-type.d.ts.map +1 -0
- package/types/rules/require-closing-tags.d.ts +12 -0
- package/types/rules/require-closing-tags.d.ts.map +1 -0
- package/types/rules/require-doctype.d.ts +7 -0
- package/types/rules/require-doctype.d.ts.map +1 -0
- package/types/rules/require-explicit-size.d.ts +13 -0
- package/types/rules/require-explicit-size.d.ts.map +1 -0
- package/types/rules/require-form-method.d.ts +7 -0
- package/types/rules/require-form-method.d.ts.map +1 -0
- package/types/rules/require-frame-title.d.ts +7 -0
- package/types/rules/require-frame-title.d.ts.map +1 -0
- package/types/rules/require-img-alt.d.ts +11 -0
- package/types/rules/require-img-alt.d.ts.map +1 -0
- package/types/rules/require-input-label.d.ts +8 -0
- package/types/rules/require-input-label.d.ts.map +1 -0
- package/types/rules/require-lang.d.ts +7 -0
- package/types/rules/require-lang.d.ts.map +1 -0
- package/types/rules/require-li-container.d.ts +7 -0
- package/types/rules/require-li-container.d.ts.map +1 -0
- package/types/rules/require-meta-charset.d.ts +9 -0
- package/types/rules/require-meta-charset.d.ts.map +1 -0
- package/types/rules/require-meta-description.d.ts +9 -0
- package/types/rules/require-meta-description.d.ts.map +1 -0
- package/types/rules/require-meta-viewport.d.ts +9 -0
- package/types/rules/require-meta-viewport.d.ts.map +1 -0
- package/types/rules/require-open-graph-protocol.d.ts +10 -0
- package/types/rules/require-open-graph-protocol.d.ts.map +1 -0
- package/types/rules/require-title.d.ts +10 -0
- package/types/rules/require-title.d.ts.map +1 -0
- package/types/rules/sort-attrs.d.ts +13 -0
- package/types/rules/sort-attrs.d.ts.map +1 -0
- package/types/rules/utils/array.d.ts +17 -0
- package/types/rules/utils/array.d.ts.map +1 -0
- package/types/rules/utils/naming.d.ts +25 -0
- package/types/rules/utils/naming.d.ts.map +1 -0
- package/types/rules/utils/node.d.ts +119 -0
- package/types/rules/utils/node.d.ts.map +1 -0
- package/types/rules/utils/settings.d.ts +19 -0
- package/types/rules/utils/settings.d.ts.map +1 -0
- package/types/rules/utils/source-code.d.ts +14 -0
- package/types/rules/utils/source-code.d.ts.map +1 -0
- package/types/rules/utils/visitors.d.ts +10 -0
- package/types/rules/utils/visitors.d.ts.map +1 -0
- package/types/types/ast.d.ts +16 -0
- package/types/types/ast.d.ts.map +1 -0
- package/types/types/index.d.ts +4 -0
- package/types/types/index.d.ts.map +1 -0
- package/types/types/rule.d.ts +97 -0
- package/types/types/rule.d.ts.map +1 -0
- package/types/types/settings.d.ts +13 -0
- package/types/types/settings.d.ts.map +1 -0
- /package/lib/types/{ast.d.ts → ast.ts} +0 -0
- /package/lib/types/{index.d.ts → index.ts} +0 -0
- /package/lib/types/{settings.d.ts → settings.ts} +0 -0
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
declare namespace _exports {
|
|
2
|
+
export { Attribute, OpenTagEnd, OpenScriptTagEnd, OpenStyleTagEnd, OpenScriptTagStart, OpenTagStart, OpenStyleTagStart, Tag, StyleTag, ScriptTag, AnyNode, Option, RuleModule };
|
|
3
|
+
}
|
|
4
|
+
declare const _exports: RuleModule;
|
|
5
|
+
export = _exports;
|
|
6
|
+
type Attribute = import("@html-eslint/types").Attribute;
|
|
7
|
+
type OpenTagEnd = import("@html-eslint/types").OpenTagEnd;
|
|
8
|
+
type OpenScriptTagEnd = import("@html-eslint/types").OpenScriptTagEnd;
|
|
9
|
+
type OpenStyleTagEnd = import("@html-eslint/types").OpenStyleTagEnd;
|
|
10
|
+
type OpenScriptTagStart = import("@html-eslint/types").OpenScriptTagStart;
|
|
11
|
+
type OpenTagStart = import("@html-eslint/types").OpenTagStart;
|
|
12
|
+
type OpenStyleTagStart = import("@html-eslint/types").OpenStyleTagStart;
|
|
13
|
+
type Tag = import("@html-eslint/types").Tag;
|
|
14
|
+
type StyleTag = import("@html-eslint/types").StyleTag;
|
|
15
|
+
type ScriptTag = import("@html-eslint/types").ScriptTag;
|
|
16
|
+
type AnyNode = import("@html-eslint/types").AnyNode;
|
|
17
|
+
type Option = {
|
|
18
|
+
disallowInAssignment?: boolean | undefined;
|
|
19
|
+
disallowMissing?: boolean | undefined;
|
|
20
|
+
disallowTabs?: boolean | undefined;
|
|
21
|
+
enforceBeforeSelfClose?: boolean | undefined;
|
|
22
|
+
};
|
|
23
|
+
type RuleModule = import("../types").RuleModule<[Option]>;
|
|
24
|
+
//# sourceMappingURL=no-extra-spacing-attrs.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"no-extra-spacing-attrs.d.ts","sourceRoot":"","sources":["../../lib/rules/no-extra-spacing-attrs.js"],"names":[],"mappings":";;;wBAyCU,UAAU;;iBAxCN,OAAO,oBAAoB,EAAE,SAAS;kBACtC,OAAO,oBAAoB,EAAE,UAAU;wBACvC,OAAO,oBAAoB,EAAE,gBAAgB;uBAC7C,OAAO,oBAAoB,EAAE,eAAe;0BAC5C,OAAO,oBAAoB,EAAE,kBAAkB;oBAC/C,OAAO,oBAAoB,EAAE,YAAY;yBACzC,OAAO,oBAAoB,EAAE,iBAAiB;WAC9C,OAAO,oBAAoB,EAAE,GAAG;gBAChC,OAAO,oBAAoB,EAAE,QAAQ;iBACrC,OAAO,oBAAoB,EAAE,SAAS;eACtC,OAAO,oBAAoB,EAAE,OAAO;;;;;;;kBAOpC,OAAO,UAAU,EAAE,UAAU,CAAC,CAAC,MAAM,CAAC,CAAC"}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
declare namespace _exports {
|
|
2
|
+
export { CommentContent, Tag, Comment, Text, Line, Range, Option, RuleModule };
|
|
3
|
+
}
|
|
4
|
+
declare const _exports: RuleModule;
|
|
5
|
+
export = _exports;
|
|
6
|
+
type CommentContent = import("@html-eslint/types").CommentContent;
|
|
7
|
+
type Tag = import("@html-eslint/types").Tag;
|
|
8
|
+
type Comment = import("@html-eslint/types").Comment;
|
|
9
|
+
type Text = import("@html-eslint/types").Text;
|
|
10
|
+
type Line = import("../types").Line;
|
|
11
|
+
type Range = import("eslint").AST.Range;
|
|
12
|
+
type Option = {
|
|
13
|
+
skip?: string[] | undefined;
|
|
14
|
+
};
|
|
15
|
+
type RuleModule = import("../types").RuleModule<[Option]>;
|
|
16
|
+
//# sourceMappingURL=no-extra-spacing-text.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"no-extra-spacing-text.d.ts","sourceRoot":"","sources":["../../lib/rules/no-extra-spacing-text.js"],"names":[],"mappings":";;;wBAuBU,UAAU;;sBAtBN,OAAO,oBAAoB,EAAE,cAAc;WAC3C,OAAO,oBAAoB,EAAE,GAAG;eAChC,OAAO,oBAAoB,EAAE,OAAO;YACpC,OAAO,oBAAoB,EAAE,IAAI;YACjC,OAAO,UAAU,EAAE,IAAI;aACvB,OAAO,QAAQ,EAAE,GAAG,CAAC,KAAK;;;;kBAI1B,OAAO,UAAU,EAAE,UAAU,CAAC,CAAC,MAAM,CAAC,CAAC"}
|
|
@@ -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,CAAC,EAAE,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"no-inline-styles.d.ts","sourceRoot":"","sources":["../../lib/rules/no-inline-styles.js"],"names":[],"mappings":";;;wBAYU,UAAU;;kBAXN,OAAO,UAAU,EAAE,UAAU,CAAC,EAAE,CAAC"}
|
|
@@ -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,CAAC,EAAE,CAAC"}
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
declare namespace _exports {
|
|
2
|
+
export { AnyToken, Document, CommentContent, Text, Option, RuleModule };
|
|
3
|
+
}
|
|
4
|
+
declare const _exports: RuleModule;
|
|
5
|
+
export = _exports;
|
|
6
|
+
type AnyToken = import("es-html-parser").AnyToken;
|
|
7
|
+
type Document = import("@html-eslint/types").Document;
|
|
8
|
+
type CommentContent = import("@html-eslint/types").CommentContent;
|
|
9
|
+
type Text = import("@html-eslint/types").Text;
|
|
10
|
+
type Option = {
|
|
11
|
+
max: number;
|
|
12
|
+
};
|
|
13
|
+
type RuleModule = import("../types").RuleModule<[Option]>;
|
|
14
|
+
//# sourceMappingURL=no-multiple-empty-lines.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"no-multiple-empty-lines.d.ts","sourceRoot":"","sources":["../../lib/rules/no-multiple-empty-lines.js"],"names":[],"mappings":";;;wBA6BU,UAAU;;gBA5BN,OAAO,gBAAgB,EAAE,QAAQ;gBACjC,OAAO,oBAAoB,EAAE,QAAQ;sBACrC,OAAO,oBAAoB,EAAE,cAAc;YAC3C,OAAO,oBAAoB,EAAE,IAAI;;SAGjC,MAAM;;kBACN,OAAO,UAAU,EAAE,UAAU,CAAC,CAAC,MAAM,CAAC,CAAC"}
|
|
@@ -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("@html-eslint/types").Tag;
|
|
8
|
+
//# sourceMappingURL=no-multiple-h1.d.ts.map
|
|
@@ -0,0 +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,CAAC,EAAE,CAAC;WACjC,OAAO,oBAAoB,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("@html-eslint/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,CAAC,EAAE,CAAC;WACjC,OAAO,oBAAoB,EAAE,GAAG"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"no-non-scalable-viewport.d.ts","sourceRoot":"","sources":["../../lib/rules/no-non-scalable-viewport.js"],"names":[],"mappings":";;;wBAYU,UAAU;;kBAXN,OAAO,UAAU,EAAE,UAAU,CAAC,EAAE,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"no-obsolete-tags.d.ts","sourceRoot":"","sources":["../../lib/rules/no-obsolete-tags.js"],"names":[],"mappings":";;;wBAcU,UAAU;;kBAbN,OAAO,UAAU,EAAE,UAAU,CAAC,EAAE,CAAC"}
|
|
@@ -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("@html-eslint/types").Tag;
|
|
8
|
+
type StyleTag = import("@html-eslint/types").StyleTag;
|
|
9
|
+
type ScriptTag = import("@html-eslint/types").ScriptTag;
|
|
10
|
+
//# sourceMappingURL=no-positive-tabindex.d.ts.map
|
|
@@ -0,0 +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,CAAC,EAAE,CAAC;WACjC,OAAO,oBAAoB,EAAE,GAAG;gBAChC,OAAO,oBAAoB,EAAE,QAAQ;iBACrC,OAAO,oBAAoB,EAAE,SAAS"}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
declare namespace _exports {
|
|
2
|
+
export { StyleTag, Attribute, Tag, ScriptTag, Options, RuleModule };
|
|
3
|
+
}
|
|
4
|
+
declare const _exports: RuleModule;
|
|
5
|
+
export = _exports;
|
|
6
|
+
type StyleTag = import("@html-eslint/types").StyleTag;
|
|
7
|
+
type Attribute = import("@html-eslint/types").Attribute;
|
|
8
|
+
type Tag = import("@html-eslint/types").Tag;
|
|
9
|
+
type ScriptTag = import("@html-eslint/types").ScriptTag;
|
|
10
|
+
type Options = {
|
|
11
|
+
attrPatterns: string[];
|
|
12
|
+
attrValuePatterns: string[];
|
|
13
|
+
message?: string;
|
|
14
|
+
}[];
|
|
15
|
+
type RuleModule = import("../types").RuleModule<Options>;
|
|
16
|
+
//# sourceMappingURL=no-restricted-attr-values.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"no-restricted-attr-values.d.ts","sourceRoot":"","sources":["../../lib/rules/no-restricted-attr-values.js"],"names":[],"mappings":";;;wBAiBU,UAAU;;gBAhBN,OAAO,oBAAoB,EAAE,QAAQ;iBACrC,OAAO,oBAAoB,EAAE,SAAS;WACtC,OAAO,oBAAoB,EAAE,GAAG;iBAChC,OAAO,oBAAoB,EAAE,SAAS;eACvC;IAAC,YAAY,EAAE,MAAM,EAAE,CAAC;IAAC,iBAAiB,EAAE,MAAM,EAAE,CAAC;IAAC,OAAO,CAAC,EAAE,MAAM,CAAA;CAAC,EAAE;kBACxE,OAAO,UAAU,EAAE,UAAU,CAAC,OAAO,CAAC"}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
declare namespace _exports {
|
|
2
|
+
export { StyleTag, Attribute, Tag, ScriptTag, Options, RuleModule };
|
|
3
|
+
}
|
|
4
|
+
declare const _exports: RuleModule;
|
|
5
|
+
export = _exports;
|
|
6
|
+
type StyleTag = import("@html-eslint/types").StyleTag;
|
|
7
|
+
type Attribute = import("@html-eslint/types").Attribute;
|
|
8
|
+
type Tag = import("@html-eslint/types").Tag;
|
|
9
|
+
type ScriptTag = import("@html-eslint/types").ScriptTag;
|
|
10
|
+
type Options = {
|
|
11
|
+
tagPatterns: string[];
|
|
12
|
+
attrPatterns: string[];
|
|
13
|
+
message?: string;
|
|
14
|
+
}[];
|
|
15
|
+
type RuleModule = import("../types").RuleModule<Options>;
|
|
16
|
+
//# sourceMappingURL=no-restricted-attrs.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"no-restricted-attrs.d.ts","sourceRoot":"","sources":["../../lib/rules/no-restricted-attrs.js"],"names":[],"mappings":";;;wBAmBU,UAAU;;gBAlBN,OAAO,oBAAoB,EAAE,QAAQ;iBACrC,OAAO,oBAAoB,EAAE,SAAS;WACtC,OAAO,oBAAoB,EAAE,GAAG;iBAChC,OAAO,oBAAoB,EAAE,SAAS;eACvC;IAAC,WAAW,EAAE,MAAM,EAAE,CAAC;IAAC,YAAY,EAAE,MAAM,EAAE,CAAC;IAAC,OAAO,CAAC,EAAE,MAAM,CAAA;CAAC,EAAE;kBAElE,OAAO,UAAU,EAAE,UAAU,CAAC,OAAO,CAAC"}
|
|
@@ -0,0 +1,10 @@
|
|
|
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("@html-eslint/types").StyleTag;
|
|
8
|
+
type Tag = import("@html-eslint/types").Tag;
|
|
9
|
+
type ScriptTag = import("@html-eslint/types").ScriptTag;
|
|
10
|
+
//# sourceMappingURL=no-script-style-type.d.ts.map
|
|
@@ -0,0 +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,CAAC,EAAE,CAAC;gBACjC,OAAO,oBAAoB,EAAE,QAAQ;WACrC,OAAO,oBAAoB,EAAE,GAAG;iBAChC,OAAO,oBAAoB,EAAE,SAAS"}
|
|
@@ -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("@html-eslint/types").Tag;
|
|
8
|
+
//# sourceMappingURL=no-skip-heading-levels.d.ts.map
|
|
@@ -0,0 +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,CAAC,EAAE,CAAC;WACjC,OAAO,oBAAoB,EAAE,GAAG"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"no-target-blank.d.ts","sourceRoot":"","sources":["../../lib/rules/no-target-blank.js"],"names":[],"mappings":";;;wBAaU,UAAU;;kBAZN,OAAO,UAAU,EAAE,UAAU,CAAC,EAAE,CAAC"}
|
|
@@ -0,0 +1,9 @@
|
|
|
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("@html-eslint/types").CommentContent;
|
|
8
|
+
type Text = import("@html-eslint/types").Text;
|
|
9
|
+
//# sourceMappingURL=no-trailing-spaces.d.ts.map
|
|
@@ -0,0 +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,CAAC,EAAE,CAAC;sBACjC,OAAO,oBAAoB,EAAE,cAAc;YAC3C,OAAO,oBAAoB,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("@html-eslint/types").Tag;
|
|
8
|
+
type ScriptTag = import("@html-eslint/types").ScriptTag;
|
|
9
|
+
type Attribute = import("@html-eslint/types").Attribute;
|
|
10
|
+
type AttributeValue = import("@html-eslint/types").AttributeValue;
|
|
11
|
+
//# 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":";;;wBAmEU,UAAU;;kBAlEN,OAAO,UAAU,EAAE,UAAU,CAAC,EAAE,CAAC;WACjC,OAAO,oBAAoB,EAAE,GAAG;iBAChC,OAAO,oBAAoB,EAAE,SAAS;iBACtC,OAAO,oBAAoB,EAAE,SAAS;sBACtC,OAAO,oBAAoB,EAAE,cAAc"}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
declare namespace _exports {
|
|
2
|
+
export { Range, Attribute, Tag, ScriptTag, StyleTag, Option, RuleModule };
|
|
3
|
+
}
|
|
4
|
+
declare const _exports: RuleModule;
|
|
5
|
+
export = _exports;
|
|
6
|
+
type Range = import("eslint").AST.Range;
|
|
7
|
+
type Attribute = import("@html-eslint/types").Attribute;
|
|
8
|
+
type Tag = import("@html-eslint/types").Tag;
|
|
9
|
+
type ScriptTag = import("@html-eslint/types").ScriptTag;
|
|
10
|
+
type StyleTag = import("@html-eslint/types").StyleTag;
|
|
11
|
+
type Option = "single" | "double";
|
|
12
|
+
type RuleModule = import("../types").RuleModule<[Option]>;
|
|
13
|
+
//# sourceMappingURL=quotes.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"quotes.d.ts","sourceRoot":"","sources":["../../lib/rules/quotes.js"],"names":[],"mappings":";;;wBA4BU,UAAU;;aA3BN,OAAO,QAAQ,EAAE,GAAG,CAAC,KAAK;iBAC1B,OAAO,oBAAoB,EAAE,SAAS;WACtC,OAAO,oBAAoB,EAAE,GAAG;iBAChC,OAAO,oBAAoB,EAAE,SAAS;gBACtC,OAAO,oBAAoB,EAAE,QAAQ;cAEtC,QAAQ,GAAG,QAAQ;kBAClB,OAAO,UAAU,EAAE,UAAU,CAAC,CAAC,MAAM,CAAC,CAAC"}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
declare namespace _exports {
|
|
2
|
+
export { Tag, ScriptTag, StyleTag, Option, RuleModule };
|
|
3
|
+
}
|
|
4
|
+
declare const _exports: RuleModule;
|
|
5
|
+
export = _exports;
|
|
6
|
+
type Tag = import("@html-eslint/types").Tag;
|
|
7
|
+
type ScriptTag = import("@html-eslint/types").ScriptTag;
|
|
8
|
+
type StyleTag = import("@html-eslint/types").StyleTag;
|
|
9
|
+
type Option = {
|
|
10
|
+
tag: string;
|
|
11
|
+
attr: string;
|
|
12
|
+
value?: string | undefined;
|
|
13
|
+
};
|
|
14
|
+
type RuleModule = import("../types").RuleModule<Option[]>;
|
|
15
|
+
//# sourceMappingURL=require-attrs.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"require-attrs.d.ts","sourceRoot":"","sources":["../../lib/rules/require-attrs.js"],"names":[],"mappings":";;;wBAwBU,UAAU;;WAvBN,OAAO,oBAAoB,EAAE,GAAG;iBAChC,OAAO,oBAAoB,EAAE,SAAS;gBACtC,OAAO,oBAAoB,EAAE,QAAQ;;SAGrC,MAAM;UACN,MAAM;;;kBAGN,OAAO,UAAU,EAAE,UAAU,CAAC,MAAM,EAAE,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"require-button-type.d.ts","sourceRoot":"","sources":["../../lib/rules/require-button-type.js"],"names":[],"mappings":";;;wBAgBU,UAAU;;kBAfN,OAAO,UAAU,EAAE,UAAU,CAAC,EAAE,CAAC"}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
declare namespace _exports {
|
|
2
|
+
export { Tag, Option, RuleModule };
|
|
3
|
+
}
|
|
4
|
+
declare const _exports: RuleModule;
|
|
5
|
+
export = _exports;
|
|
6
|
+
type Tag = import("@html-eslint/types").Tag;
|
|
7
|
+
type Option = {
|
|
8
|
+
selfClosing?: "always" | "never" | undefined;
|
|
9
|
+
selfClosingCustomPatterns?: string[] | undefined;
|
|
10
|
+
};
|
|
11
|
+
type RuleModule = import("../types").RuleModule<[Option]>;
|
|
12
|
+
//# sourceMappingURL=require-closing-tags.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"require-closing-tags.d.ts","sourceRoot":"","sources":["../../lib/rules/require-closing-tags.js"],"names":[],"mappings":";;;wBAqBU,UAAU;;WApBN,OAAO,oBAAoB,EAAE,GAAG;;;;;kBAKhC,OAAO,UAAU,EAAE,UAAU,CAAC,CAAC,MAAM,CAAC,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"require-doctype.d.ts","sourceRoot":"","sources":["../../lib/rules/require-doctype.js"],"names":[],"mappings":";;;wBAWU,UAAU;;kBAVN,OAAO,UAAU,EAAE,UAAU,CAAC,EAAE,CAAC"}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
declare namespace _exports {
|
|
2
|
+
export { Tag, AnyNode, Option, RuleModule };
|
|
3
|
+
}
|
|
4
|
+
declare const _exports: RuleModule;
|
|
5
|
+
export = _exports;
|
|
6
|
+
type Tag = import("@html-eslint/types").Tag;
|
|
7
|
+
type AnyNode = import("@html-eslint/types").AnyNode;
|
|
8
|
+
type Option = {
|
|
9
|
+
allowClass?: string[] | undefined;
|
|
10
|
+
allowId?: string[] | undefined;
|
|
11
|
+
};
|
|
12
|
+
type RuleModule = import("../types").RuleModule<[Option]>;
|
|
13
|
+
//# sourceMappingURL=require-explicit-size.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"require-explicit-size.d.ts","sourceRoot":"","sources":["../../lib/rules/require-explicit-size.js"],"names":[],"mappings":";;;wBAuBU,UAAU;;WAtBN,OAAO,oBAAoB,EAAE,GAAG;eAChC,OAAO,oBAAoB,EAAE,OAAO;;;;;kBAKpC,OAAO,UAAU,EAAE,UAAU,CAAC,CAAC,MAAM,CAAC,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"require-form-method.d.ts","sourceRoot":"","sources":["../../lib/rules/require-form-method.js"],"names":[],"mappings":";;;wBAkBU,UAAU;;kBAjBN,OAAO,UAAU,EAAE,UAAU,CAAC,EAAE,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"require-frame-title.d.ts","sourceRoot":"","sources":["../../lib/rules/require-frame-title.js"],"names":[],"mappings":";;;wBAcU,UAAU;;kBAbN,OAAO,UAAU,EAAE,UAAU,CAAC,EAAE,CAAC"}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
declare namespace _exports {
|
|
2
|
+
export { Tag, Option, RuleModule };
|
|
3
|
+
}
|
|
4
|
+
declare const _exports: RuleModule;
|
|
5
|
+
export = _exports;
|
|
6
|
+
type Tag = import("@html-eslint/types").Tag;
|
|
7
|
+
type Option = {
|
|
8
|
+
substitute?: string[] | undefined;
|
|
9
|
+
};
|
|
10
|
+
type RuleModule = import("../types").RuleModule<[Option]>;
|
|
11
|
+
//# sourceMappingURL=require-img-alt.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"require-img-alt.d.ts","sourceRoot":"","sources":["../../lib/rules/require-img-alt.js"],"names":[],"mappings":";;;wBAiBU,UAAU;;WAhBN,OAAO,oBAAoB,EAAE,GAAG;;;;kBAKhC,OAAO,UAAU,EAAE,UAAU,CAAC,CAAC,MAAM,CAAC,CAAC"}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
declare namespace _exports {
|
|
2
|
+
export { Tag, RuleModule };
|
|
3
|
+
}
|
|
4
|
+
declare const _exports: RuleModule;
|
|
5
|
+
export = _exports;
|
|
6
|
+
type Tag = import("@html-eslint/types").Tag;
|
|
7
|
+
type RuleModule = import("../types").RuleModule<[]>;
|
|
8
|
+
//# sourceMappingURL=require-input-label.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"require-input-label.d.ts","sourceRoot":"","sources":["../../lib/rules/require-input-label.js"],"names":[],"mappings":";;;wBAkBU,UAAU;;WAjBN,OAAO,oBAAoB,EAAE,GAAG;kBAChC,OAAO,UAAU,EAAE,UAAU,CAAC,EAAE,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"require-lang.d.ts","sourceRoot":"","sources":["../../lib/rules/require-lang.js"],"names":[],"mappings":";;;wBAcU,UAAU;;kBAbN,OAAO,UAAU,EAAE,UAAU,CAAC,EAAE,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"require-li-container.d.ts","sourceRoot":"","sources":["../../lib/rules/require-li-container.js"],"names":[],"mappings":";;;wBAcU,UAAU;;kBAbN,OAAO,UAAU,EAAE,UAAU,CAAC,EAAE,CAAC"}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
declare namespace _exports {
|
|
2
|
+
export { Tag, AnyNode, RuleModule };
|
|
3
|
+
}
|
|
4
|
+
declare const _exports: RuleModule;
|
|
5
|
+
export = _exports;
|
|
6
|
+
type Tag = import("@html-eslint/types").Tag;
|
|
7
|
+
type AnyNode = import("@html-eslint/types").AnyNode;
|
|
8
|
+
type RuleModule = import("../types").RuleModule<[]>;
|
|
9
|
+
//# sourceMappingURL=require-meta-charset.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"require-meta-charset.d.ts","sourceRoot":"","sources":["../../lib/rules/require-meta-charset.js"],"names":[],"mappings":";;;wBAwBU,UAAU;;WAvBN,OAAO,oBAAoB,EAAE,GAAG;eAChC,OAAO,oBAAoB,EAAE,OAAO;kBACpC,OAAO,UAAU,EAAE,UAAU,CAAC,EAAE,CAAC"}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
declare namespace _exports {
|
|
2
|
+
export { Tag, AnyNode, RuleModule };
|
|
3
|
+
}
|
|
4
|
+
declare const _exports: RuleModule;
|
|
5
|
+
export = _exports;
|
|
6
|
+
type Tag = import("@html-eslint/types").Tag;
|
|
7
|
+
type AnyNode = import("@html-eslint/types").AnyNode;
|
|
8
|
+
type RuleModule = import("../types").RuleModule<[]>;
|
|
9
|
+
//# sourceMappingURL=require-meta-description.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"require-meta-description.d.ts","sourceRoot":"","sources":["../../lib/rules/require-meta-description.js"],"names":[],"mappings":";;;wBAuBU,UAAU;;WAtBN,OAAO,oBAAoB,EAAE,GAAG;eAChC,OAAO,oBAAoB,EAAE,OAAO;kBACpC,OAAO,UAAU,EAAE,UAAU,CAAC,EAAE,CAAC"}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
declare namespace _exports {
|
|
2
|
+
export { Tag, AnyNode, RuleModule };
|
|
3
|
+
}
|
|
4
|
+
declare const _exports: RuleModule;
|
|
5
|
+
export = _exports;
|
|
6
|
+
type Tag = import("@html-eslint/types").Tag;
|
|
7
|
+
type AnyNode = import("@html-eslint/types").AnyNode;
|
|
8
|
+
type RuleModule = import("../types").RuleModule<[]>;
|
|
9
|
+
//# sourceMappingURL=require-meta-viewport.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"require-meta-viewport.d.ts","sourceRoot":"","sources":["../../lib/rules/require-meta-viewport.js"],"names":[],"mappings":";;;wBAgCU,UAAU;;WA/BN,OAAO,oBAAoB,EAAE,GAAG;eAChC,OAAO,oBAAoB,EAAE,OAAO;kBACpC,OAAO,UAAU,EAAE,UAAU,CAAC,EAAE,CAAC"}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
declare namespace _exports {
|
|
2
|
+
export { Tag, AnyNode, Option, RuleModule };
|
|
3
|
+
}
|
|
4
|
+
declare const _exports: RuleModule;
|
|
5
|
+
export = _exports;
|
|
6
|
+
type Tag = import("@html-eslint/types").Tag;
|
|
7
|
+
type AnyNode = import("@html-eslint/types").AnyNode;
|
|
8
|
+
type Option = string[];
|
|
9
|
+
type RuleModule = import("../types").RuleModule<[Option]>;
|
|
10
|
+
//# sourceMappingURL=require-open-graph-protocol.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"require-open-graph-protocol.d.ts","sourceRoot":"","sources":["../../lib/rules/require-open-graph-protocol.js"],"names":[],"mappings":";;;wBAqCU,UAAU;;WApCN,OAAO,oBAAoB,EAAE,GAAG;eAChC,OAAO,oBAAoB,EAAE,OAAO;cAErC,MAAM,EAAE;kBAEP,OAAO,UAAU,EAAE,UAAU,CAAC,CAAC,MAAM,CAAC,CAAC"}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
declare namespace _exports {
|
|
2
|
+
export { Tag, Text, AnyNode, RuleModule };
|
|
3
|
+
}
|
|
4
|
+
declare const _exports: RuleModule;
|
|
5
|
+
export = _exports;
|
|
6
|
+
type Tag = import("@html-eslint/types").Tag;
|
|
7
|
+
type Text = import("@html-eslint/types").Text;
|
|
8
|
+
type AnyNode = import("@html-eslint/types").AnyNode;
|
|
9
|
+
type RuleModule = import("../types").RuleModule<[]>;
|
|
10
|
+
//# sourceMappingURL=require-title.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"require-title.d.ts","sourceRoot":"","sources":["../../lib/rules/require-title.js"],"names":[],"mappings":";;;wBAiCU,UAAU;;WAhCN,OAAO,oBAAoB,EAAE,GAAG;YAChC,OAAO,oBAAoB,EAAE,IAAI;eACjC,OAAO,oBAAoB,EAAE,OAAO;kBACpC,OAAO,UAAU,EAAE,UAAU,CAAC,EAAE,CAAC"}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
declare namespace _exports {
|
|
2
|
+
export { RuleFixer, Attribute, Text, Option, RuleModule };
|
|
3
|
+
}
|
|
4
|
+
declare const _exports: RuleModule;
|
|
5
|
+
export = _exports;
|
|
6
|
+
type RuleFixer = import("../types").RuleFixer;
|
|
7
|
+
type Attribute = import("@html-eslint/types").Attribute;
|
|
8
|
+
type Text = import("@html-eslint/types").Text;
|
|
9
|
+
type Option = {
|
|
10
|
+
priority?: string[] | undefined;
|
|
11
|
+
};
|
|
12
|
+
type RuleModule = import("../types").RuleModule<[Option]>;
|
|
13
|
+
//# sourceMappingURL=sort-attrs.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"sort-attrs.d.ts","sourceRoot":"","sources":["../../lib/rules/sort-attrs.js"],"names":[],"mappings":";;;wBAoBU,UAAU;;iBAnBN,OAAO,UAAU,EAAE,SAAS;iBAC5B,OAAO,oBAAoB,EAAE,SAAS;YACtC,OAAO,oBAAoB,EAAE,IAAI;;;;kBAIjC,OAAO,UAAU,EAAE,UAAU,CAAC,CAAC,MAAM,CAAC,CAAC"}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @template T
|
|
3
|
+
* @template {T} S
|
|
4
|
+
* @param {T[]} items
|
|
5
|
+
* @param {(node: T) => node is S} predicate
|
|
6
|
+
* @returns {S | undefined}
|
|
7
|
+
*/
|
|
8
|
+
export function find<T, S extends T>(items: T[], predicate: (node: T) => node is S): S | undefined;
|
|
9
|
+
/**
|
|
10
|
+
* @template T
|
|
11
|
+
* @template {T} S
|
|
12
|
+
* @param {T[]} items
|
|
13
|
+
* @param {(node: T) => node is S} predicate
|
|
14
|
+
* @returns {S[]}
|
|
15
|
+
*/
|
|
16
|
+
export function filter<T, S extends T>(items: T[], predicate: (node: T) => node is S): S[];
|
|
17
|
+
//# sourceMappingURL=array.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"array.d.ts","sourceRoot":"","sources":["../../../lib/rules/utils/array.js"],"names":[],"mappings":"AAAA;;;;;;GAMG;AACH,qBANa,CAAC,EACG,CAAC,SAAJ,CAAE,SACL,CAAC,EAAE,aACH,CAAC,IAAI,EAAE,CAAC,KAAK,IAAI,IAAI,CAAC,GACpB,CAAC,GAAG,SAAS,CAIzB;AAED;;;;;;GAMG;AACH,uBANa,CAAC,EACG,CAAC,SAAJ,CAAE,SACL,CAAC,EAAE,aACH,CAAC,IAAI,EAAE,CAAC,KAAK,IAAI,IAAI,CAAC,GACpB,CAAC,EAAE,CAIf"}
|