@html-eslint/eslint-plugin 0.31.1 → 0.33.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/rules/attrs-newline.js +3 -5
- package/lib/rules/element-newline.js +11 -9
- package/lib/rules/id-naming-convention.js +5 -5
- package/lib/rules/indent/indent.js +121 -69
- package/lib/rules/index.js +20 -0
- package/lib/rules/lowercase.js +7 -8
- package/lib/rules/max-element-depth.js +96 -0
- package/lib/rules/no-abstract-roles.js +4 -4
- package/lib/rules/no-accesskey-attrs.js +4 -4
- package/lib/rules/no-duplicate-attrs.js +4 -4
- package/lib/rules/no-duplicate-id.js +7 -7
- package/lib/rules/no-extra-spacing-attrs.js +14 -14
- package/lib/rules/no-extra-spacing-text.js +9 -10
- package/lib/rules/no-heading-inside-button.js +54 -0
- package/lib/rules/no-inline-styles.js +0 -1
- package/lib/rules/no-invalid-role.js +287 -0
- package/lib/rules/no-multiple-empty-lines.js +5 -5
- package/lib/rules/no-multiple-h1.js +2 -2
- package/lib/rules/no-nested-interactive.js +120 -0
- package/lib/rules/no-positive-tabindex.js +4 -4
- package/lib/rules/no-restricted-attr-values.js +6 -6
- package/lib/rules/no-restricted-attrs.js +6 -6
- package/lib/rules/no-script-style-type.js +4 -4
- package/lib/rules/no-skip-heading-levels.js +2 -2
- package/lib/rules/no-trailing-spaces.js +3 -3
- package/lib/rules/prefer-https.js +106 -0
- package/lib/rules/quotes.js +8 -8
- package/lib/rules/require-attrs.js +14 -6
- package/lib/rules/require-closing-tags.js +4 -4
- package/lib/rules/require-explicit-size.js +122 -0
- package/lib/rules/require-form-method.js +81 -0
- package/lib/rules/require-img-alt.js +2 -3
- package/lib/rules/require-input-label.js +77 -0
- package/lib/rules/require-meta-charset.js +3 -3
- package/lib/rules/require-meta-description.js +3 -3
- package/lib/rules/require-meta-viewport.js +3 -3
- package/lib/rules/require-open-graph-protocol.js +3 -3
- package/lib/rules/require-title.js +5 -5
- package/lib/rules/sort-attrs.js +12 -12
- package/lib/rules/utils/node.js +72 -32
- package/lib/rules/utils/settings.js +2 -2
- package/lib/rules/utils/visitors.js +1 -1
- package/lib/types/ast.d.ts +204 -0
- package/lib/types/index.d.ts +3 -0
- package/lib/types/rule.d.ts +83 -0
- package/lib/types/settings.ts +13 -0
- package/package.json +4 -4
- package/types/rules/attrs-newline.d.ts +2 -3
- package/types/rules/attrs-newline.d.ts.map +1 -1
- package/types/rules/element-newline.d.ts +8 -9
- package/types/rules/element-newline.d.ts.map +1 -1
- package/types/rules/id-naming-convention.d.ts +4 -4
- package/types/rules/id-naming-convention.d.ts.map +1 -1
- package/types/rules/indent/indent.d.ts +12 -5
- package/types/rules/indent/indent.d.ts.map +1 -1
- package/types/rules/index.d.ts +8 -0
- package/types/rules/lowercase.d.ts +4 -5
- package/types/rules/lowercase.d.ts.map +1 -1
- package/types/rules/max-element-depth.d.ts +10 -0
- package/types/rules/max-element-depth.d.ts.map +1 -0
- package/types/rules/no-abstract-roles.d.ts +4 -4
- package/types/rules/no-abstract-roles.d.ts.map +1 -1
- package/types/rules/no-accesskey-attrs.d.ts +4 -4
- package/types/rules/no-accesskey-attrs.d.ts.map +1 -1
- package/types/rules/no-duplicate-attrs.d.ts +4 -4
- package/types/rules/no-duplicate-attrs.d.ts.map +1 -1
- package/types/rules/no-duplicate-id.d.ts +5 -5
- package/types/rules/no-duplicate-id.d.ts.map +1 -1
- package/types/rules/no-extra-spacing-attrs.d.ts +11 -11
- package/types/rules/no-extra-spacing-attrs.d.ts.map +1 -1
- package/types/rules/no-extra-spacing-text.d.ts +7 -8
- package/types/rules/no-extra-spacing-text.d.ts.map +1 -1
- 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 +1 -2
- package/types/rules/no-inline-styles.d.ts.map +1 -1
- 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 +5 -5
- package/types/rules/no-multiple-empty-lines.d.ts.map +1 -1
- package/types/rules/no-multiple-h1.d.ts +2 -2
- package/types/rules/no-multiple-h1.d.ts.map +1 -1
- 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-positive-tabindex.d.ts +4 -4
- package/types/rules/no-positive-tabindex.d.ts.map +1 -1
- package/types/rules/no-restricted-attr-values.d.ts +5 -5
- package/types/rules/no-restricted-attr-values.d.ts.map +1 -1
- package/types/rules/no-restricted-attrs.d.ts +5 -5
- package/types/rules/no-restricted-attrs.d.ts.map +1 -1
- package/types/rules/no-script-style-type.d.ts +4 -4
- package/types/rules/no-script-style-type.d.ts.map +1 -1
- package/types/rules/no-skip-heading-levels.d.ts +2 -2
- package/types/rules/no-skip-heading-levels.d.ts.map +1 -1
- package/types/rules/no-trailing-spaces.d.ts +3 -3
- package/types/rules/no-trailing-spaces.d.ts.map +1 -1
- 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 +6 -6
- package/types/rules/quotes.d.ts.map +1 -1
- package/types/rules/require-attrs.d.ts +9 -4
- package/types/rules/require-attrs.d.ts.map +1 -1
- package/types/rules/require-closing-tags.d.ts +2 -2
- package/types/rules/require-closing-tags.d.ts.map +1 -1
- package/types/rules/require-explicit-size.d.ts +9 -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-img-alt.d.ts +2 -2
- package/types/rules/require-img-alt.d.ts.map +1 -1
- 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-meta-charset.d.ts +3 -3
- package/types/rules/require-meta-charset.d.ts.map +1 -1
- package/types/rules/require-meta-description.d.ts +3 -3
- package/types/rules/require-meta-description.d.ts.map +1 -1
- package/types/rules/require-meta-viewport.d.ts +3 -3
- package/types/rules/require-meta-viewport.d.ts.map +1 -1
- package/types/rules/require-open-graph-protocol.d.ts +3 -3
- package/types/rules/require-open-graph-protocol.d.ts.map +1 -1
- package/types/rules/require-title.d.ts +4 -4
- package/types/rules/require-title.d.ts.map +1 -1
- package/types/rules/sort-attrs.d.ts +4 -4
- package/types/rules/sort-attrs.d.ts.map +1 -1
- package/types/rules/utils/node.d.ts +56 -37
- package/types/rules/utils/node.d.ts.map +1 -1
- package/types/rules/utils/settings.d.ts +2 -2
- package/types/rules/utils/settings.d.ts.map +1 -1
- package/types/rules/utils/source-code.d.ts +1 -1
- package/types/rules/utils/source-code.d.ts.map +1 -1
- package/types/rules/utils/visitors.d.ts +1 -1
- package/types/rules/utils/visitors.d.ts.map +1 -1
- package/types/types/settings.d.ts +13 -0
- package/types/types/settings.d.ts.map +1 -0
- package/lib/types.d.ts +0 -289
|
@@ -1,17 +1,16 @@
|
|
|
1
1
|
declare namespace _exports {
|
|
2
|
-
export { RuleModule,
|
|
2
|
+
export { RuleModule, Tag, Comment, Doctype, ScriptTag, StyleTag, Text, NewlineNode, NodeMeta };
|
|
3
3
|
}
|
|
4
4
|
declare const _exports: RuleModule;
|
|
5
5
|
export = _exports;
|
|
6
6
|
type RuleModule = import("../types").RuleModule;
|
|
7
|
-
type
|
|
8
|
-
type
|
|
9
|
-
type
|
|
10
|
-
type
|
|
11
|
-
type
|
|
12
|
-
type
|
|
13
|
-
type
|
|
14
|
-
type NewlineNode = CommentNode | DoctypeNode | ScriptTagNode | StyleTagNode | TagNode | TextNode;
|
|
7
|
+
type Tag = import("../types").Tag;
|
|
8
|
+
type Comment = import("../types").Comment;
|
|
9
|
+
type Doctype = import("../types").Doctype;
|
|
10
|
+
type ScriptTag = import("../types").ScriptTag;
|
|
11
|
+
type StyleTag = import("../types").StyleTag;
|
|
12
|
+
type Text = import("../types").Text;
|
|
13
|
+
type NewlineNode = Tag | Doctype | ScriptTag | StyleTag | Text;
|
|
15
14
|
type NodeMeta = {
|
|
16
15
|
childFirst: NewlineNode | null;
|
|
17
16
|
childLast: NewlineNode | null;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"element-newline.d.ts","sourceRoot":"","sources":["../../lib/rules/element-newline.js"],"names":[],"mappings":";;;
|
|
1
|
+
{"version":3,"file":"element-newline.d.ts","sourceRoot":"","sources":["../../lib/rules/element-newline.js"],"names":[],"mappings":";;;wBAmEU,UAAU;;kBAlEN,OAAO,UAAU,EAAE,UAAU;WAC7B,OAAO,UAAU,EAAE,GAAG;eACtB,OAAO,UAAU,EAAE,OAAO;eAC1B,OAAO,UAAU,EAAE,OAAO;iBAC1B,OAAO,UAAU,EAAE,SAAS;gBAC5B,OAAO,UAAU,EAAE,QAAQ;YAC3B,OAAO,UAAU,EAAE,IAAI;mBACvB,GAAG,GAAG,OAAO,GAAG,SAAS,GAAG,QAAQ,GAAG,IAAI;gBAC5C;IACR,UAAU,EAAE,WAAW,GAAG,IAAI,CAAC;IAC/B,SAAS,EAAE,WAAW,GAAG,IAAI,CAAC;IAC9B,eAAe,EAAE,OAAO,CAAC;CAC1B"}
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
declare namespace _exports {
|
|
2
|
-
export { RuleModule,
|
|
2
|
+
export { RuleModule, Tag, ScriptTag, StyleTag };
|
|
3
3
|
}
|
|
4
4
|
declare const _exports: RuleModule;
|
|
5
5
|
export = _exports;
|
|
6
6
|
type RuleModule = import("../types").RuleModule;
|
|
7
|
-
type
|
|
8
|
-
type
|
|
9
|
-
type
|
|
7
|
+
type Tag = import("../types").Tag;
|
|
8
|
+
type ScriptTag = import("../types").ScriptTag;
|
|
9
|
+
type StyleTag = import("../types").StyleTag;
|
|
10
10
|
//# sourceMappingURL=id-naming-convention.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"id-naming-convention.d.ts","sourceRoot":"","sources":["../../lib/rules/id-naming-convention.js"],"names":[],"mappings":";;;wBAyCU,UAAU;;kBAxCN,OAAO,UAAU,EAAE,UAAU;
|
|
1
|
+
{"version":3,"file":"id-naming-convention.d.ts","sourceRoot":"","sources":["../../lib/rules/id-naming-convention.js"],"names":[],"mappings":";;;wBAyCU,UAAU;;kBAxCN,OAAO,UAAU,EAAE,UAAU;WAC7B,OAAO,UAAU,EAAE,GAAG;iBACtB,OAAO,UAAU,EAAE,SAAS;gBAC5B,OAAO,UAAU,EAAE,QAAQ"}
|
|
@@ -1,17 +1,19 @@
|
|
|
1
1
|
declare namespace _exports {
|
|
2
|
-
export { RuleModule, AnyNode,
|
|
2
|
+
export { RuleModule, AnyNode, Line, Tag, RuleListener, Context, Token, SourceCode, Range, SourceLocation, TemplateLiteral, IndentType, MessageId, IndentOptionInfo };
|
|
3
3
|
}
|
|
4
4
|
declare const _exports: RuleModule;
|
|
5
5
|
export = _exports;
|
|
6
6
|
type RuleModule = import("../../types").RuleModule;
|
|
7
7
|
type AnyNode = import("../../types").AnyNode;
|
|
8
|
-
type
|
|
9
|
-
type
|
|
10
|
-
type TagNode = import("../../types").TagNode;
|
|
8
|
+
type Line = import("../../types").Line;
|
|
9
|
+
type Tag = import("../../types").Tag;
|
|
11
10
|
type RuleListener = import("../../types").RuleListener;
|
|
11
|
+
type Context = import("../../types").Context;
|
|
12
12
|
type Token = import("eslint").AST.Token;
|
|
13
13
|
type SourceCode = import("eslint").SourceCode;
|
|
14
|
-
type
|
|
14
|
+
type Range = import("eslint").AST.Range;
|
|
15
|
+
type SourceLocation = import("eslint").AST.SourceLocation;
|
|
16
|
+
type TemplateLiteral = import("../../types").TemplateLiteral;
|
|
15
17
|
type IndentType = {
|
|
16
18
|
TAB: "tab";
|
|
17
19
|
SPACE: "space";
|
|
@@ -19,4 +21,9 @@ type IndentType = {
|
|
|
19
21
|
type MessageId = {
|
|
20
22
|
WRONG_INDENT: "wrongIndent";
|
|
21
23
|
};
|
|
24
|
+
type IndentOptionInfo = {
|
|
25
|
+
indentType: IndentType["TAB"] | IndentType["SPACE"];
|
|
26
|
+
indentSize: number;
|
|
27
|
+
indentChar: string;
|
|
28
|
+
};
|
|
22
29
|
//# sourceMappingURL=indent.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"indent.d.ts","sourceRoot":"","sources":["../../../lib/rules/indent/indent.js"],"names":[],"mappings":";;;
|
|
1
|
+
{"version":3,"file":"indent.d.ts","sourceRoot":"","sources":["../../../lib/rules/indent/indent.js"],"names":[],"mappings":";;;wBAiDU,UAAU;;kBAhDN,OAAO,aAAa,EAAE,UAAU;eAChC,OAAO,aAAa,EAAE,OAAO;YAC7B,OAAO,aAAa,EAAE,IAAI;WAC1B,OAAO,aAAa,EAAE,GAAG;oBACzB,OAAO,aAAa,EAAE,YAAY;eAClC,OAAO,aAAa,EAAE,OAAO;aAC7B,OAAO,QAAQ,EAAE,GAAG,CAAC,KAAK;kBAC1B,OAAO,QAAQ,EAAE,UAAU;aAC3B,OAAO,QAAQ,EAAE,GAAG,CAAC,KAAK;sBAC1B,OAAO,QAAQ,EAAE,GAAG,CAAC,cAAc;uBACnC,OAAO,aAAa,EAAE,eAAe;;SAIrC,KAAK;WACL,OAAO;;;kBAEP,aAAa;;;gBAEb,UAAU,CAAC,KAAK,CAAC,GAAG,UAAU,CAAC,OAAO,CAAC;gBACvC,MAAM;gBACN,MAAM"}
|
package/types/rules/index.d.ts
CHANGED
|
@@ -35,9 +35,17 @@ declare const _exports: {
|
|
|
35
35
|
"no-trailing-spaces": import("../types").RuleModule;
|
|
36
36
|
"no-restricted-attr-values": import("../types").RuleModule;
|
|
37
37
|
"no-script-style-type": import("../types").RuleModule;
|
|
38
|
+
"no-heading-inside-button": import("../types").RuleModule;
|
|
39
|
+
"no-invalid-role": import("../types").RuleModule;
|
|
40
|
+
"no-nested-interactive": import("../types").RuleModule;
|
|
38
41
|
lowercase: import("../types").RuleModule;
|
|
39
42
|
"require-open-graph-protocol": import("../types").RuleModule;
|
|
43
|
+
"require-form-method": import("../types").RuleModule;
|
|
40
44
|
"sort-attrs": import("../types").RuleModule;
|
|
45
|
+
"prefer-https": import("../types").RuleModule;
|
|
46
|
+
"require-input-label": import("../types").RuleModule;
|
|
47
|
+
"max-element-depth": import("../types").RuleModule;
|
|
48
|
+
"require-explicit-size": import("../types").RuleModule;
|
|
41
49
|
};
|
|
42
50
|
export = _exports;
|
|
43
51
|
//# sourceMappingURL=index.d.ts.map
|
|
@@ -1,11 +1,10 @@
|
|
|
1
1
|
declare namespace _exports {
|
|
2
|
-
export { RuleModule,
|
|
2
|
+
export { RuleModule, Tag, StyleTag, ScriptTag };
|
|
3
3
|
}
|
|
4
4
|
declare const _exports: RuleModule;
|
|
5
5
|
export = _exports;
|
|
6
6
|
type RuleModule = import("../types").RuleModule;
|
|
7
|
-
type
|
|
8
|
-
type
|
|
9
|
-
type
|
|
10
|
-
type RuleListener = import("../types").RuleListener;
|
|
7
|
+
type Tag = import("../types").Tag;
|
|
8
|
+
type StyleTag = import("../types").StyleTag;
|
|
9
|
+
type ScriptTag = import("../types").ScriptTag;
|
|
11
10
|
//# sourceMappingURL=lowercase.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"lowercase.d.ts","sourceRoot":"","sources":["../../lib/rules/lowercase.js"],"names":[],"mappings":";;;
|
|
1
|
+
{"version":3,"file":"lowercase.d.ts","sourceRoot":"","sources":["../../lib/rules/lowercase.js"],"names":[],"mappings":";;;wBAiBU,UAAU;;kBAhBN,OAAO,UAAU,EAAE,UAAU;WAC7B,OAAO,UAAU,EAAE,GAAG;gBACtB,OAAO,UAAU,EAAE,QAAQ;iBAC3B,OAAO,UAAU,EAAE,SAAS"}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
declare namespace _exports {
|
|
2
|
+
export { RuleModule, Tag, StyleTag, ScriptTag };
|
|
3
|
+
}
|
|
4
|
+
declare const _exports: RuleModule;
|
|
5
|
+
export = _exports;
|
|
6
|
+
type RuleModule = import("../types").RuleModule;
|
|
7
|
+
type Tag = import("../types").Tag;
|
|
8
|
+
type StyleTag = import("../types").StyleTag;
|
|
9
|
+
type ScriptTag = import("../types").ScriptTag;
|
|
10
|
+
//# sourceMappingURL=max-element-depth.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"max-element-depth.d.ts","sourceRoot":"","sources":["../../lib/rules/max-element-depth.js"],"names":[],"mappings":";;;wBAeU,UAAU;;kBAdN,OAAO,UAAU,EAAE,UAAU;WAC7B,OAAO,UAAU,EAAE,GAAG;gBACtB,OAAO,UAAU,EAAE,QAAQ;iBAC3B,OAAO,UAAU,EAAE,SAAS"}
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
declare namespace _exports {
|
|
2
|
-
export { RuleModule,
|
|
2
|
+
export { RuleModule, Tag, StyleTag, ScriptTag };
|
|
3
3
|
}
|
|
4
4
|
declare const _exports: RuleModule;
|
|
5
5
|
export = _exports;
|
|
6
6
|
type RuleModule = import("../types").RuleModule;
|
|
7
|
-
type
|
|
8
|
-
type
|
|
9
|
-
type
|
|
7
|
+
type Tag = import("../types").Tag;
|
|
8
|
+
type StyleTag = import("../types").StyleTag;
|
|
9
|
+
type ScriptTag = import("../types").ScriptTag;
|
|
10
10
|
//# sourceMappingURL=no-abstract-roles.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"no-abstract-roles.d.ts","sourceRoot":"","sources":["../../lib/rules/no-abstract-roles.js"],"names":[],"mappings":";;;wBA+BU,UAAU;;kBA9BN,OAAO,UAAU,EAAE,UAAU;
|
|
1
|
+
{"version":3,"file":"no-abstract-roles.d.ts","sourceRoot":"","sources":["../../lib/rules/no-abstract-roles.js"],"names":[],"mappings":";;;wBA+BU,UAAU;;kBA9BN,OAAO,UAAU,EAAE,UAAU;WAC7B,OAAO,UAAU,EAAE,GAAG;gBACtB,OAAO,UAAU,EAAE,QAAQ;iBAC3B,OAAO,UAAU,EAAE,SAAS"}
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
declare namespace _exports {
|
|
2
|
-
export { RuleModule,
|
|
2
|
+
export { RuleModule, Tag, StyleTag, ScriptTag };
|
|
3
3
|
}
|
|
4
4
|
declare const _exports: RuleModule;
|
|
5
5
|
export = _exports;
|
|
6
6
|
type RuleModule = import("../types").RuleModule;
|
|
7
|
-
type
|
|
8
|
-
type
|
|
9
|
-
type
|
|
7
|
+
type Tag = import("../types").Tag;
|
|
8
|
+
type StyleTag = import("../types").StyleTag;
|
|
9
|
+
type ScriptTag = import("../types").ScriptTag;
|
|
10
10
|
//# sourceMappingURL=no-accesskey-attrs.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"no-accesskey-attrs.d.ts","sourceRoot":"","sources":["../../lib/rules/no-accesskey-attrs.js"],"names":[],"mappings":";;;wBAgBU,UAAU;;kBAfN,OAAO,UAAU,EAAE,UAAU;
|
|
1
|
+
{"version":3,"file":"no-accesskey-attrs.d.ts","sourceRoot":"","sources":["../../lib/rules/no-accesskey-attrs.js"],"names":[],"mappings":";;;wBAgBU,UAAU;;kBAfN,OAAO,UAAU,EAAE,UAAU;WAC7B,OAAO,UAAU,EAAE,GAAG;gBACtB,OAAO,UAAU,EAAE,QAAQ;iBAC3B,OAAO,UAAU,EAAE,SAAS"}
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
declare namespace _exports {
|
|
2
|
-
export { RuleModule,
|
|
2
|
+
export { RuleModule, Tag, StyleTag, ScriptTag };
|
|
3
3
|
}
|
|
4
4
|
declare const _exports: RuleModule;
|
|
5
5
|
export = _exports;
|
|
6
6
|
type RuleModule = import("../types").RuleModule;
|
|
7
|
-
type
|
|
8
|
-
type
|
|
9
|
-
type
|
|
7
|
+
type Tag = import("../types").Tag;
|
|
8
|
+
type StyleTag = import("../types").StyleTag;
|
|
9
|
+
type ScriptTag = import("../types").ScriptTag;
|
|
10
10
|
//# sourceMappingURL=no-duplicate-attrs.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"no-duplicate-attrs.d.ts","sourceRoot":"","sources":["../../lib/rules/no-duplicate-attrs.js"],"names":[],"mappings":";;;wBAeU,UAAU;;kBAdN,OAAO,UAAU,EAAE,UAAU;
|
|
1
|
+
{"version":3,"file":"no-duplicate-attrs.d.ts","sourceRoot":"","sources":["../../lib/rules/no-duplicate-attrs.js"],"names":[],"mappings":";;;wBAeU,UAAU;;kBAdN,OAAO,UAAU,EAAE,UAAU;WAC7B,OAAO,UAAU,EAAE,GAAG;gBACtB,OAAO,UAAU,EAAE,QAAQ;iBAC3B,OAAO,UAAU,EAAE,SAAS"}
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
declare namespace _exports {
|
|
2
|
-
export { RuleModule,
|
|
2
|
+
export { RuleModule, Tag, StyleTag, ScriptTag, AttributeValue };
|
|
3
3
|
}
|
|
4
4
|
declare const _exports: RuleModule;
|
|
5
5
|
export = _exports;
|
|
6
6
|
type RuleModule = import("../types").RuleModule;
|
|
7
|
-
type
|
|
8
|
-
type
|
|
9
|
-
type
|
|
10
|
-
type
|
|
7
|
+
type Tag = import("../types").Tag;
|
|
8
|
+
type StyleTag = import("../types").StyleTag;
|
|
9
|
+
type ScriptTag = import("../types").ScriptTag;
|
|
10
|
+
type AttributeValue = import("../types").AttributeValue;
|
|
11
11
|
//# sourceMappingURL=no-duplicate-id.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"no-duplicate-id.d.ts","sourceRoot":"","sources":["../../lib/rules/no-duplicate-id.js"],"names":[],"mappings":";;;wBAsBU,UAAU;;kBArBN,OAAO,UAAU,EAAE,UAAU;
|
|
1
|
+
{"version":3,"file":"no-duplicate-id.d.ts","sourceRoot":"","sources":["../../lib/rules/no-duplicate-id.js"],"names":[],"mappings":";;;wBAsBU,UAAU;;kBArBN,OAAO,UAAU,EAAE,UAAU;WAC7B,OAAO,UAAU,EAAE,GAAG;gBACtB,OAAO,UAAU,EAAE,QAAQ;iBAC3B,OAAO,UAAU,EAAE,SAAS;sBAC5B,OAAO,UAAU,EAAE,cAAc"}
|
|
@@ -1,18 +1,18 @@
|
|
|
1
1
|
declare namespace _exports {
|
|
2
|
-
export { RuleModule,
|
|
2
|
+
export { RuleModule, Attribute, OpenTagEnd, OpenScriptTagEnd, OpenStyleTagEnd, OpenScriptTagStart, OpenTagStart, OpenStyleTagStart, Tag, StyleTag, ScriptTag, AnyNode };
|
|
3
3
|
}
|
|
4
4
|
declare const _exports: RuleModule;
|
|
5
5
|
export = _exports;
|
|
6
6
|
type RuleModule = import("../types").RuleModule;
|
|
7
|
-
type
|
|
8
|
-
type
|
|
9
|
-
type
|
|
10
|
-
type
|
|
11
|
-
type
|
|
12
|
-
type
|
|
13
|
-
type
|
|
14
|
-
type
|
|
15
|
-
type
|
|
16
|
-
type
|
|
7
|
+
type Attribute = import("../types").Attribute;
|
|
8
|
+
type OpenTagEnd = import("../types").OpenTagEnd;
|
|
9
|
+
type OpenScriptTagEnd = import("../types").OpenScriptTagEnd;
|
|
10
|
+
type OpenStyleTagEnd = import("../types").OpenStyleTagEnd;
|
|
11
|
+
type OpenScriptTagStart = import("../types").OpenScriptTagStart;
|
|
12
|
+
type OpenTagStart = import("../types").OpenTagStart;
|
|
13
|
+
type OpenStyleTagStart = import("../types").OpenStyleTagStart;
|
|
14
|
+
type Tag = import("../types").Tag;
|
|
15
|
+
type StyleTag = import("../types").StyleTag;
|
|
16
|
+
type ScriptTag = import("../types").ScriptTag;
|
|
17
17
|
type AnyNode = import("../types").AnyNode;
|
|
18
18
|
//# sourceMappingURL=no-extra-spacing-attrs.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"no-extra-spacing-attrs.d.ts","sourceRoot":"","sources":["../../lib/rules/no-extra-spacing-attrs.js"],"names":[],"mappings":";;;wBAkCU,UAAU;;kBAjCN,OAAO,UAAU,EAAE,UAAU;
|
|
1
|
+
{"version":3,"file":"no-extra-spacing-attrs.d.ts","sourceRoot":"","sources":["../../lib/rules/no-extra-spacing-attrs.js"],"names":[],"mappings":";;;wBAkCU,UAAU;;kBAjCN,OAAO,UAAU,EAAE,UAAU;iBAC7B,OAAO,UAAU,EAAE,SAAS;kBAC5B,OAAO,UAAU,EAAE,UAAU;wBAC7B,OAAO,UAAU,EAAE,gBAAgB;uBACnC,OAAO,UAAU,EAAE,eAAe;0BAClC,OAAO,UAAU,EAAE,kBAAkB;oBACrC,OAAO,UAAU,EAAE,YAAY;yBAC/B,OAAO,UAAU,EAAE,iBAAiB;WACpC,OAAO,UAAU,EAAE,GAAG;gBACtB,OAAO,UAAU,EAAE,QAAQ;iBAC3B,OAAO,UAAU,EAAE,SAAS;eAC5B,OAAO,UAAU,EAAE,OAAO"}
|
|
@@ -1,14 +1,13 @@
|
|
|
1
1
|
declare namespace _exports {
|
|
2
|
-
export { RuleModule,
|
|
2
|
+
export { RuleModule, CommentContent, Tag, Comment, Text, Line, Range };
|
|
3
3
|
}
|
|
4
4
|
declare const _exports: RuleModule;
|
|
5
5
|
export = _exports;
|
|
6
6
|
type RuleModule = import("../types").RuleModule;
|
|
7
|
-
type
|
|
8
|
-
type
|
|
9
|
-
type
|
|
10
|
-
type
|
|
11
|
-
type
|
|
12
|
-
type
|
|
13
|
-
type Range = import("../types").Range;
|
|
7
|
+
type CommentContent = import("../types").CommentContent;
|
|
8
|
+
type Tag = import("../types").Tag;
|
|
9
|
+
type Comment = import("../types").Comment;
|
|
10
|
+
type Text = import("../types").Text;
|
|
11
|
+
type Line = import("../types").Line;
|
|
12
|
+
type Range = import("eslint").AST.Range;
|
|
14
13
|
//# sourceMappingURL=no-extra-spacing-text.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"no-extra-spacing-text.d.ts","sourceRoot":"","sources":["../../lib/rules/no-extra-spacing-text.js"],"names":[],"mappings":";;;
|
|
1
|
+
{"version":3,"file":"no-extra-spacing-text.d.ts","sourceRoot":"","sources":["../../lib/rules/no-extra-spacing-text.js"],"names":[],"mappings":";;;wBAoBU,UAAU;;kBAnBN,OAAO,UAAU,EAAE,UAAU;sBAC7B,OAAO,UAAU,EAAE,cAAc;WACjC,OAAO,UAAU,EAAE,GAAG;eACtB,OAAO,UAAU,EAAE,OAAO;YAC1B,OAAO,UAAU,EAAE,IAAI;YACvB,OAAO,UAAU,EAAE,IAAI;aACvB,OAAO,QAAQ,EAAE,GAAG,CAAC,KAAK"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"no-heading-inside-button.d.ts","sourceRoot":"","sources":["../../lib/rules/no-heading-inside-button.js"],"names":[],"mappings":";;;wBAcU,UAAU;;kBAbN,OAAO,UAAU,EAAE,UAAU"}
|
|
@@ -1,8 +1,7 @@
|
|
|
1
1
|
declare namespace _exports {
|
|
2
|
-
export { RuleModule
|
|
2
|
+
export { RuleModule };
|
|
3
3
|
}
|
|
4
4
|
declare const _exports: RuleModule;
|
|
5
5
|
export = _exports;
|
|
6
6
|
type RuleModule = import("../types").RuleModule;
|
|
7
|
-
type RuleListener = import("../types").RuleListener;
|
|
8
7
|
//# sourceMappingURL=no-inline-styles.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"no-inline-styles.d.ts","sourceRoot":"","sources":["../../lib/rules/no-inline-styles.js"],"names":[],"mappings":";;;
|
|
1
|
+
{"version":3,"file":"no-inline-styles.d.ts","sourceRoot":"","sources":["../../lib/rules/no-inline-styles.js"],"names":[],"mappings":";;;wBAYU,UAAU;;kBAXN,OAAO,UAAU,EAAE,UAAU"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"no-invalid-role.d.ts","sourceRoot":"","sources":["../../lib/rules/no-invalid-role.js"],"names":[],"mappings":";;;wBAkOU,UAAU;;kBAjON,OAAO,UAAU,EAAE,UAAU"}
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
declare namespace _exports {
|
|
2
|
-
export {
|
|
2
|
+
export { AnyToken, RuleModule, Document, CommentContent, Text };
|
|
3
3
|
}
|
|
4
4
|
declare const _exports: RuleModule;
|
|
5
5
|
export = _exports;
|
|
6
|
-
type RuleModule = import("../types").RuleModule;
|
|
7
|
-
type DocumentNode = import("es-html-parser").DocumentNode;
|
|
8
6
|
type AnyToken = import("es-html-parser").AnyToken;
|
|
9
|
-
type
|
|
10
|
-
type
|
|
7
|
+
type RuleModule = import("../types").RuleModule;
|
|
8
|
+
type Document = import("../types").Document;
|
|
9
|
+
type CommentContent = import("../types").CommentContent;
|
|
10
|
+
type Text = import("../types").Text;
|
|
11
11
|
//# sourceMappingURL=no-multiple-empty-lines.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"no-multiple-empty-lines.d.ts","sourceRoot":"","sources":["../../lib/rules/no-multiple-empty-lines.js"],"names":[],"mappings":";;;wBA0BU,UAAU;;
|
|
1
|
+
{"version":3,"file":"no-multiple-empty-lines.d.ts","sourceRoot":"","sources":["../../lib/rules/no-multiple-empty-lines.js"],"names":[],"mappings":";;;wBA0BU,UAAU;;gBAzBN,OAAO,gBAAgB,EAAE,QAAQ;kBACjC,OAAO,UAAU,EAAE,UAAU;gBAC7B,OAAO,UAAU,EAAE,QAAQ;sBAC3B,OAAO,UAAU,EAAE,cAAc;YACjC,OAAO,UAAU,EAAE,IAAI"}
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
declare namespace _exports {
|
|
2
|
-
export { RuleModule,
|
|
2
|
+
export { RuleModule, Tag };
|
|
3
3
|
}
|
|
4
4
|
declare const _exports: RuleModule;
|
|
5
5
|
export = _exports;
|
|
6
6
|
type RuleModule = import("../types").RuleModule;
|
|
7
|
-
type
|
|
7
|
+
type Tag = import("../types").Tag;
|
|
8
8
|
//# sourceMappingURL=no-multiple-h1.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"no-multiple-h1.d.ts","sourceRoot":"","sources":["../../lib/rules/no-multiple-h1.js"],"names":[],"mappings":";;;wBAYU,UAAU;;kBAXN,OAAO,UAAU,EAAE,UAAU;
|
|
1
|
+
{"version":3,"file":"no-multiple-h1.d.ts","sourceRoot":"","sources":["../../lib/rules/no-multiple-h1.js"],"names":[],"mappings":";;;wBAYU,UAAU;;kBAXN,OAAO,UAAU,EAAE,UAAU;WAC7B,OAAO,UAAU,EAAE,GAAG"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"no-nested-interactive.d.ts","sourceRoot":"","sources":["../../lib/rules/no-nested-interactive.js"],"names":[],"mappings":";;;wBAyDU,UAAU;;kBAxDN,OAAO,UAAU,EAAE,UAAU;WAC7B,OAAO,UAAU,EAAE,GAAG"}
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
declare namespace _exports {
|
|
2
|
-
export { RuleModule,
|
|
2
|
+
export { RuleModule, Tag, StyleTag, ScriptTag };
|
|
3
3
|
}
|
|
4
4
|
declare const _exports: RuleModule;
|
|
5
5
|
export = _exports;
|
|
6
6
|
type RuleModule = import("../types").RuleModule;
|
|
7
|
-
type
|
|
8
|
-
type
|
|
9
|
-
type
|
|
7
|
+
type Tag = import("../types").Tag;
|
|
8
|
+
type StyleTag = import("../types").StyleTag;
|
|
9
|
+
type ScriptTag = import("../types").ScriptTag;
|
|
10
10
|
//# sourceMappingURL=no-positive-tabindex.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"no-positive-tabindex.d.ts","sourceRoot":"","sources":["../../lib/rules/no-positive-tabindex.js"],"names":[],"mappings":";;;wBAgBU,UAAU;;kBAfN,OAAO,UAAU,EAAE,UAAU;
|
|
1
|
+
{"version":3,"file":"no-positive-tabindex.d.ts","sourceRoot":"","sources":["../../lib/rules/no-positive-tabindex.js"],"names":[],"mappings":";;;wBAgBU,UAAU;;kBAfN,OAAO,UAAU,EAAE,UAAU;WAC7B,OAAO,UAAU,EAAE,GAAG;gBACtB,OAAO,UAAU,EAAE,QAAQ;iBAC3B,OAAO,UAAU,EAAE,SAAS"}
|
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
declare namespace _exports {
|
|
2
|
-
export { RuleModule,
|
|
2
|
+
export { RuleModule, StyleTag, Attribute, Tag, ScriptTag, Options };
|
|
3
3
|
}
|
|
4
4
|
declare const _exports: RuleModule;
|
|
5
5
|
export = _exports;
|
|
6
6
|
type RuleModule = import("../types").RuleModule;
|
|
7
|
-
type
|
|
8
|
-
type
|
|
9
|
-
type
|
|
10
|
-
type
|
|
7
|
+
type StyleTag = import("../types").StyleTag;
|
|
8
|
+
type Attribute = import("../types").Attribute;
|
|
9
|
+
type Tag = import("../types").Tag;
|
|
10
|
+
type ScriptTag = import("../types").ScriptTag;
|
|
11
11
|
type Options = {
|
|
12
12
|
attrPatterns: string[];
|
|
13
13
|
attrValuePatterns: string[];
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"no-restricted-attr-values.d.ts","sourceRoot":"","sources":["../../lib/rules/no-restricted-attr-values.js"],"names":[],"mappings":";;;wBAiBU,UAAU;;kBAhBN,OAAO,UAAU,EAAE,UAAU;
|
|
1
|
+
{"version":3,"file":"no-restricted-attr-values.d.ts","sourceRoot":"","sources":["../../lib/rules/no-restricted-attr-values.js"],"names":[],"mappings":";;;wBAiBU,UAAU;;kBAhBN,OAAO,UAAU,EAAE,UAAU;gBAC7B,OAAO,UAAU,EAAE,QAAQ;iBAC3B,OAAO,UAAU,EAAE,SAAS;WAC5B,OAAO,UAAU,EAAE,GAAG;iBACtB,OAAO,UAAU,EAAE,SAAS;eAC7B;IAAC,YAAY,EAAE,MAAM,EAAE,CAAC;IAAC,iBAAiB,EAAE,MAAM,EAAE,CAAC;IAAC,OAAO,CAAC,EAAE,MAAM,CAAA;CAAC,EAAE"}
|
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
declare namespace _exports {
|
|
2
|
-
export { RuleModule,
|
|
2
|
+
export { RuleModule, StyleTag, Attribute, Tag, ScriptTag, Options };
|
|
3
3
|
}
|
|
4
4
|
declare const _exports: RuleModule;
|
|
5
5
|
export = _exports;
|
|
6
6
|
type RuleModule = import("../types").RuleModule;
|
|
7
|
-
type
|
|
8
|
-
type
|
|
9
|
-
type
|
|
10
|
-
type
|
|
7
|
+
type StyleTag = import("../types").StyleTag;
|
|
8
|
+
type Attribute = import("../types").Attribute;
|
|
9
|
+
type Tag = import("../types").Tag;
|
|
10
|
+
type ScriptTag = import("../types").ScriptTag;
|
|
11
11
|
type Options = {
|
|
12
12
|
tagPatterns: string[];
|
|
13
13
|
attrPatterns: string[];
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"no-restricted-attrs.d.ts","sourceRoot":"","sources":["../../lib/rules/no-restricted-attrs.js"],"names":[],"mappings":";;;wBAkBU,UAAU;;kBAjBN,OAAO,UAAU,EAAE,UAAU;
|
|
1
|
+
{"version":3,"file":"no-restricted-attrs.d.ts","sourceRoot":"","sources":["../../lib/rules/no-restricted-attrs.js"],"names":[],"mappings":";;;wBAkBU,UAAU;;kBAjBN,OAAO,UAAU,EAAE,UAAU;gBAC7B,OAAO,UAAU,EAAE,QAAQ;iBAC3B,OAAO,UAAU,EAAE,SAAS;WAC5B,OAAO,UAAU,EAAE,GAAG;iBACtB,OAAO,UAAU,EAAE,SAAS;eAC7B;IAAC,WAAW,EAAE,MAAM,EAAE,CAAC;IAAC,YAAY,EAAE,MAAM,EAAE,CAAC;IAAC,OAAO,CAAC,EAAE,MAAM,CAAA;CAAC,EAAE"}
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
declare namespace _exports {
|
|
2
|
-
export { RuleModule,
|
|
2
|
+
export { RuleModule, StyleTag, Tag, ScriptTag };
|
|
3
3
|
}
|
|
4
4
|
declare const _exports: RuleModule;
|
|
5
5
|
export = _exports;
|
|
6
6
|
type RuleModule = import("../types").RuleModule;
|
|
7
|
-
type
|
|
8
|
-
type
|
|
9
|
-
type
|
|
7
|
+
type StyleTag = import("../types").StyleTag;
|
|
8
|
+
type Tag = import("../types").Tag;
|
|
9
|
+
type ScriptTag = import("../types").ScriptTag;
|
|
10
10
|
//# sourceMappingURL=no-script-style-type.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"no-script-style-type.d.ts","sourceRoot":"","sources":["../../lib/rules/no-script-style-type.js"],"names":[],"mappings":";;;wBAgBU,UAAU;;kBAfN,OAAO,UAAU,EAAE,UAAU;
|
|
1
|
+
{"version":3,"file":"no-script-style-type.d.ts","sourceRoot":"","sources":["../../lib/rules/no-script-style-type.js"],"names":[],"mappings":";;;wBAgBU,UAAU;;kBAfN,OAAO,UAAU,EAAE,UAAU;gBAC7B,OAAO,UAAU,EAAE,QAAQ;WAC3B,OAAO,UAAU,EAAE,GAAG;iBACtB,OAAO,UAAU,EAAE,SAAS"}
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
declare namespace _exports {
|
|
2
|
-
export { RuleModule,
|
|
2
|
+
export { RuleModule, Tag };
|
|
3
3
|
}
|
|
4
4
|
declare const _exports: RuleModule;
|
|
5
5
|
export = _exports;
|
|
6
6
|
type RuleModule = import("../types").RuleModule;
|
|
7
|
-
type
|
|
7
|
+
type Tag = import("../types").Tag;
|
|
8
8
|
//# sourceMappingURL=no-skip-heading-levels.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"no-skip-heading-levels.d.ts","sourceRoot":"","sources":["../../lib/rules/no-skip-heading-levels.js"],"names":[],"mappings":";;;wBAYU,UAAU;;kBAXN,OAAO,UAAU,EAAE,UAAU;
|
|
1
|
+
{"version":3,"file":"no-skip-heading-levels.d.ts","sourceRoot":"","sources":["../../lib/rules/no-skip-heading-levels.js"],"names":[],"mappings":";;;wBAYU,UAAU;;kBAXN,OAAO,UAAU,EAAE,UAAU;WAC7B,OAAO,UAAU,EAAE,GAAG"}
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
declare namespace _exports {
|
|
2
|
-
export { RuleModule,
|
|
2
|
+
export { RuleModule, CommentContent, Text };
|
|
3
3
|
}
|
|
4
4
|
declare const _exports: RuleModule;
|
|
5
5
|
export = _exports;
|
|
6
6
|
type RuleModule = import("../types").RuleModule;
|
|
7
|
-
type
|
|
8
|
-
type
|
|
7
|
+
type CommentContent = import("../types").CommentContent;
|
|
8
|
+
type Text = import("../types").Text;
|
|
9
9
|
//# sourceMappingURL=no-trailing-spaces.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"no-trailing-spaces.d.ts","sourceRoot":"","sources":["../../lib/rules/no-trailing-spaces.js"],"names":[],"mappings":";;;wBAwBU,UAAU;;kBAvBN,OAAO,UAAU,EAAE,UAAU;
|
|
1
|
+
{"version":3,"file":"no-trailing-spaces.d.ts","sourceRoot":"","sources":["../../lib/rules/no-trailing-spaces.js"],"names":[],"mappings":";;;wBAwBU,UAAU;;kBAvBN,OAAO,UAAU,EAAE,UAAU;sBAC7B,OAAO,UAAU,EAAE,cAAc;YACjC,OAAO,UAAU,EAAE,IAAI"}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
declare namespace _exports {
|
|
2
|
+
export { RuleModule, Tag, ScriptTag, Attribute, AttributeValue };
|
|
3
|
+
}
|
|
4
|
+
declare const _exports: RuleModule;
|
|
5
|
+
export = _exports;
|
|
6
|
+
type RuleModule = import("../types").RuleModule;
|
|
7
|
+
type Tag = import("../types").Tag;
|
|
8
|
+
type ScriptTag = import("../types").ScriptTag;
|
|
9
|
+
type Attribute = import("../types").Attribute;
|
|
10
|
+
type AttributeValue = import("../types").AttributeValue;
|
|
11
|
+
//# sourceMappingURL=prefer-https.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"prefer-https.d.ts","sourceRoot":"","sources":["../../lib/rules/prefer-https.js"],"names":[],"mappings":";;;wBAkEU,UAAU;;kBAjEN,OAAO,UAAU,EAAE,UAAU;WAC7B,OAAO,UAAU,EAAE,GAAG;iBACtB,OAAO,UAAU,EAAE,SAAS;iBAC5B,OAAO,UAAU,EAAE,SAAS;sBAC5B,OAAO,UAAU,EAAE,cAAc"}
|
package/types/rules/quotes.d.ts
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
declare namespace _exports {
|
|
2
|
-
export {
|
|
2
|
+
export { Range, RuleModule, Attribute, Tag, ScriptTag, StyleTag };
|
|
3
3
|
}
|
|
4
4
|
declare const _exports: RuleModule;
|
|
5
5
|
export = _exports;
|
|
6
|
+
type Range = import("eslint").AST.Range;
|
|
6
7
|
type RuleModule = import("../types").RuleModule;
|
|
7
|
-
type
|
|
8
|
-
type
|
|
9
|
-
type
|
|
10
|
-
type
|
|
11
|
-
type StyleTagNode = import("../types").StyleTagNode;
|
|
8
|
+
type Attribute = import("../types").Attribute;
|
|
9
|
+
type Tag = import("../types").Tag;
|
|
10
|
+
type ScriptTag = import("../types").ScriptTag;
|
|
11
|
+
type StyleTag = import("../types").StyleTag;
|
|
12
12
|
//# sourceMappingURL=quotes.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"quotes.d.ts","sourceRoot":"","sources":["../../lib/rules/quotes.js"],"names":[],"mappings":";;;wBAyBU,UAAU;;
|
|
1
|
+
{"version":3,"file":"quotes.d.ts","sourceRoot":"","sources":["../../lib/rules/quotes.js"],"names":[],"mappings":";;;wBAyBU,UAAU;;aAxBN,OAAO,QAAQ,EAAE,GAAG,CAAC,KAAK;kBAC1B,OAAO,UAAU,EAAE,UAAU;iBAC7B,OAAO,UAAU,EAAE,SAAS;WAC5B,OAAO,UAAU,EAAE,GAAG;iBACtB,OAAO,UAAU,EAAE,SAAS;gBAC5B,OAAO,UAAU,EAAE,QAAQ"}
|