@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
package/lib/exports.ts
ADDED
package/lib/index.js
CHANGED
|
@@ -3,7 +3,12 @@ const recommended = require("./configs/recommended");
|
|
|
3
3
|
const parser = require("@html-eslint/parser");
|
|
4
4
|
|
|
5
5
|
/**
|
|
6
|
-
* @
|
|
6
|
+
* @typedef {import("./rules")} AllRules
|
|
7
|
+
* @typedef {import("./configs/recommended")} RecommendedConfig
|
|
8
|
+
*/
|
|
9
|
+
|
|
10
|
+
/**
|
|
11
|
+
* @type {{rules: AllRules, configs: {recommended: RecommendedConfig, "flat/recommended": import("eslint").Linter.FlatConfig }}}
|
|
7
12
|
*/
|
|
8
13
|
const plugin = {
|
|
9
14
|
// @ts-ignore
|
package/package.json
CHANGED
|
@@ -1,14 +1,15 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@html-eslint/eslint-plugin",
|
|
3
|
-
"version": "0.35.
|
|
3
|
+
"version": "0.35.2",
|
|
4
4
|
"description": "ESLint plugin for html",
|
|
5
5
|
"author": "yeonjuan",
|
|
6
6
|
"homepage": "https://github.com/yeonjuan/html-eslint#readme",
|
|
7
7
|
"license": "MIT",
|
|
8
8
|
"main": "lib/index.js",
|
|
9
|
-
"types": "types/
|
|
9
|
+
"types": "types/exports.d.ts",
|
|
10
10
|
"files": [
|
|
11
|
-
"lib"
|
|
11
|
+
"lib",
|
|
12
|
+
"types"
|
|
12
13
|
],
|
|
13
14
|
"publishConfig": {
|
|
14
15
|
"access": "public"
|
|
@@ -20,7 +21,8 @@
|
|
|
20
21
|
"scripts": {
|
|
21
22
|
"test": "jest --coverage",
|
|
22
23
|
"ts": "tsc --noEmit",
|
|
23
|
-
"lint": "eslint ."
|
|
24
|
+
"lint": "eslint .",
|
|
25
|
+
"build": "rimraf types && tsc --project tsconfig.build.json"
|
|
24
26
|
},
|
|
25
27
|
"bugs": {
|
|
26
28
|
"url": "https://github.com/yeonjuan/html-eslint/issues"
|
|
@@ -35,11 +37,11 @@
|
|
|
35
37
|
"accessibility"
|
|
36
38
|
],
|
|
37
39
|
"dependencies": {
|
|
38
|
-
"@html-eslint/template-parser": "^0.35.
|
|
39
|
-
"@html-eslint/template-syntax-parser": "^0.35.
|
|
40
|
+
"@html-eslint/template-parser": "^0.35.2",
|
|
41
|
+
"@html-eslint/template-syntax-parser": "^0.35.2"
|
|
40
42
|
},
|
|
41
43
|
"devDependencies": {
|
|
42
|
-
"@html-eslint/parser": "^0.35.
|
|
44
|
+
"@html-eslint/parser": "^0.35.2",
|
|
43
45
|
"@html-eslint/types": "^0.35.1",
|
|
44
46
|
"@types/eslint": "^9.6.1",
|
|
45
47
|
"@types/estree": "^0.0.47",
|
|
@@ -48,5 +50,5 @@
|
|
|
48
50
|
"espree": "^10.3.0",
|
|
49
51
|
"typescript": "^5.7.2"
|
|
50
52
|
},
|
|
51
|
-
"gitHead": "
|
|
53
|
+
"gitHead": "d367b20d5822e66a88aed100f7a3e67bb9e1b2f0"
|
|
52
54
|
}
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
export let rules: {
|
|
2
|
+
"@html-eslint/require-lang": string;
|
|
3
|
+
"@html-eslint/require-img-alt": string;
|
|
4
|
+
"@html-eslint/require-doctype": string;
|
|
5
|
+
"@html-eslint/require-title": string;
|
|
6
|
+
"@html-eslint/no-multiple-h1": string;
|
|
7
|
+
"@html-eslint/no-extra-spacing-attrs": string;
|
|
8
|
+
"@html-eslint/attrs-newline": string;
|
|
9
|
+
"@html-eslint/element-newline": (string | {
|
|
10
|
+
inline: string[];
|
|
11
|
+
})[];
|
|
12
|
+
"@html-eslint/no-duplicate-id": string;
|
|
13
|
+
"@html-eslint/indent": string;
|
|
14
|
+
"@html-eslint/require-li-container": string;
|
|
15
|
+
"@html-eslint/quotes": string;
|
|
16
|
+
"@html-eslint/no-obsolete-tags": string;
|
|
17
|
+
"@html-eslint/require-closing-tags": string;
|
|
18
|
+
"@html-eslint/no-duplicate-attrs": string;
|
|
19
|
+
};
|
|
20
|
+
//# sourceMappingURL=recommended.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"recommended.d.ts","sourceRoot":"","sources":["../../lib/configs/recommended.js"],"names":[],"mappings":""}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../lib/constants/index.js"],"names":[],"mappings":""}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"obsolete-tags.d.ts","sourceRoot":"","sources":["../../lib/constants/obsolete-tags.js"],"names":[],"mappings":"wBACW,MAAM,EAAE"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"rule-category.d.ts","sourceRoot":"","sources":["../../lib/constants/rule-category.js"],"names":[],"mappings":""}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"svg-camel-case-attributes.d.ts","sourceRoot":"","sources":["../../lib/constants/svg-camel-case-attributes.js"],"names":[],"mappings":""}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"void-elements.d.ts","sourceRoot":"","sources":["../../lib/constants/void-elements.js"],"names":[],"mappings":"wBAAW,MAAM,EAAE"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"exports.d.ts","sourceRoot":"","sources":["../lib/exports.ts"],"names":[],"mappings":"AAAA,OAAO,MAAM,GAAG,QAAQ,SAAS,CAAC,CAAC;AACnC,eAAe,MAAM,CAAC"}
|
package/types/index.d.ts
ADDED
|
@@ -0,0 +1,89 @@
|
|
|
1
|
+
export = plugin;
|
|
2
|
+
/**
|
|
3
|
+
* @typedef {import("./rules")} AllRules
|
|
4
|
+
* @typedef {import("./configs/recommended")} RecommendedConfig
|
|
5
|
+
*/
|
|
6
|
+
/**
|
|
7
|
+
* @type {{rules: AllRules, configs: {recommended: RecommendedConfig, "flat/recommended": import("eslint").Linter.FlatConfig }}}
|
|
8
|
+
*/
|
|
9
|
+
declare const plugin: {
|
|
10
|
+
rules: AllRules;
|
|
11
|
+
configs: {
|
|
12
|
+
recommended: RecommendedConfig;
|
|
13
|
+
"flat/recommended": import("eslint").Linter.FlatConfig;
|
|
14
|
+
};
|
|
15
|
+
};
|
|
16
|
+
declare namespace plugin {
|
|
17
|
+
export { AllRules, RecommendedConfig };
|
|
18
|
+
}
|
|
19
|
+
type AllRules = {
|
|
20
|
+
"require-lang": import("./types").RuleModule<[]>;
|
|
21
|
+
"require-img-alt": import("./types").RuleModule<[import("./rules/require-img-alt").Option]>;
|
|
22
|
+
"require-doctype": import("./types").RuleModule<[]>;
|
|
23
|
+
"require-title": import("./types").RuleModule<[]>;
|
|
24
|
+
"no-duplicate-id": import("./types").RuleModule<[]>;
|
|
25
|
+
"no-inline-styles": import("./types").RuleModule<[]>;
|
|
26
|
+
"no-multiple-h1": import("./types").RuleModule<[]>;
|
|
27
|
+
"no-extra-spacing-attrs": import("./types").RuleModule<[import("./rules/no-extra-spacing-attrs").Option]>;
|
|
28
|
+
"no-extra-spacing-text": import("./types").RuleModule<[import("./rules/no-extra-spacing-text").Option]>;
|
|
29
|
+
"attrs-newline": import("./types").RuleModule<[import("./rules/attrs-newline").Option]>;
|
|
30
|
+
"element-newline": import("./types").RuleModule<[import("./rules/element-newline").Option]>;
|
|
31
|
+
"no-skip-heading-levels": import("./types").RuleModule<[]>;
|
|
32
|
+
"require-li-container": import("./types").RuleModule<[]>;
|
|
33
|
+
indent: import("./types").RuleModule<[import("./rules/indent/indent").Option1, import("./rules/indent/indent").Option2]>;
|
|
34
|
+
quotes: import("./types").RuleModule<[import("./rules/quotes").Option]>;
|
|
35
|
+
"id-naming-convention": import("./types").RuleModule<[import("./rules/id-naming-convention").Option1, import("./rules/id-naming-convention").Option2]>;
|
|
36
|
+
"no-obsolete-tags": import("./types").RuleModule<[]>;
|
|
37
|
+
"require-attrs": import("./types").RuleModule<import("./rules/require-attrs").Option[]>;
|
|
38
|
+
"require-closing-tags": import("./types").RuleModule<[import("./rules/require-closing-tags").Option]>;
|
|
39
|
+
"require-meta-description": import("./types").RuleModule<[]>;
|
|
40
|
+
"require-frame-title": import("./types").RuleModule<[]>;
|
|
41
|
+
"no-non-scalable-viewport": import("./types").RuleModule<[]>;
|
|
42
|
+
"no-positive-tabindex": import("./types").RuleModule<[]>;
|
|
43
|
+
"require-meta-viewport": import("./types").RuleModule<[]>;
|
|
44
|
+
"require-meta-charset": import("./types").RuleModule<[]>;
|
|
45
|
+
"no-target-blank": import("./types").RuleModule<[]>;
|
|
46
|
+
"no-duplicate-attrs": import("./types").RuleModule<[]>;
|
|
47
|
+
"no-abstract-roles": import("./types").RuleModule<[]>;
|
|
48
|
+
"require-button-type": import("./types").RuleModule<[]>;
|
|
49
|
+
"no-aria-hidden-body": import("./types").RuleModule<[]>;
|
|
50
|
+
"no-multiple-empty-lines": import("./types").RuleModule<[import("./rules/no-multiple-empty-lines").Option]>;
|
|
51
|
+
"no-accesskey-attrs": import("./types").RuleModule<[]>;
|
|
52
|
+
"no-restricted-attrs": import("./types").RuleModule<import("./rules/no-restricted-attrs").Options>;
|
|
53
|
+
"no-trailing-spaces": import("./types").RuleModule<[]>;
|
|
54
|
+
"no-restricted-attr-values": import("./types").RuleModule<import("./rules/no-restricted-attr-values").Options>;
|
|
55
|
+
"no-script-style-type": import("./types").RuleModule<[]>;
|
|
56
|
+
"no-heading-inside-button": import("./types").RuleModule<[]>;
|
|
57
|
+
"no-invalid-role": import("./types").RuleModule<[]>;
|
|
58
|
+
"no-nested-interactive": import("./types").RuleModule<[]>;
|
|
59
|
+
lowercase: import("./types").RuleModule<[]>;
|
|
60
|
+
"require-open-graph-protocol": import("./types").RuleModule<[import("./rules/require-open-graph-protocol").Option]>;
|
|
61
|
+
"require-form-method": import("./types").RuleModule<[]>;
|
|
62
|
+
"sort-attrs": import("./types").RuleModule<[import("./rules/sort-attrs").Option]>;
|
|
63
|
+
"prefer-https": import("./types").RuleModule<[]>;
|
|
64
|
+
"require-input-label": import("./types").RuleModule<[]>;
|
|
65
|
+
"max-element-depth": import("./types").RuleModule<[import("./rules/max-element-depth").Option]>;
|
|
66
|
+
"require-explicit-size": import("./types").RuleModule<[import("./rules/require-explicit-size").Option]>;
|
|
67
|
+
};
|
|
68
|
+
type RecommendedConfig = {
|
|
69
|
+
rules: {
|
|
70
|
+
"@html-eslint/require-lang": string;
|
|
71
|
+
"@html-eslint/require-img-alt": string;
|
|
72
|
+
"@html-eslint/require-doctype": string;
|
|
73
|
+
"@html-eslint/require-title": string;
|
|
74
|
+
"@html-eslint/no-multiple-h1": string;
|
|
75
|
+
"@html-eslint/no-extra-spacing-attrs": string;
|
|
76
|
+
"@html-eslint/attrs-newline": string;
|
|
77
|
+
"@html-eslint/element-newline": (string | {
|
|
78
|
+
inline: string[];
|
|
79
|
+
})[];
|
|
80
|
+
"@html-eslint/no-duplicate-id": string;
|
|
81
|
+
"@html-eslint/indent": string;
|
|
82
|
+
"@html-eslint/require-li-container": string;
|
|
83
|
+
"@html-eslint/quotes": string;
|
|
84
|
+
"@html-eslint/no-obsolete-tags": string;
|
|
85
|
+
"@html-eslint/require-closing-tags": string;
|
|
86
|
+
"@html-eslint/no-duplicate-attrs": string;
|
|
87
|
+
};
|
|
88
|
+
};
|
|
89
|
+
//# sourceMappingURL=index.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../lib/index.js"],"names":[],"mappings":";AAIA;;;GAGG;AAEH;;GAEG;AACH,sBAFU;IAAC,KAAK,EAAE,QAAQ,CAAC;IAAC,OAAO,EAAE;QAAC,WAAW,EAAE,iBAAiB,CAAC;QAAC,kBAAkB,EAAE,OAAO,QAAQ,EAAE,MAAM,CAAC,UAAU,CAAA;KAAE,CAAA;CAAC,CAQ7H"}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
declare namespace _exports {
|
|
2
|
+
export { RuleFixer, MessageId, Option, RuleModule };
|
|
3
|
+
}
|
|
4
|
+
declare const _exports: RuleModule;
|
|
5
|
+
export = _exports;
|
|
6
|
+
type RuleFixer = import("../types").RuleFixer;
|
|
7
|
+
type MessageId = {
|
|
8
|
+
CLOSE_STYLE_WRONG: "closeStyleWrong";
|
|
9
|
+
NEWLINE_MISSING: "newlineMissing";
|
|
10
|
+
NEWLINE_UNEXPECTED: "newlineUnexpected";
|
|
11
|
+
};
|
|
12
|
+
type Option = {
|
|
13
|
+
closeStyle?: "sameline" | "newline" | undefined;
|
|
14
|
+
ifAttrsMoreThan?: number | undefined;
|
|
15
|
+
};
|
|
16
|
+
type RuleModule = import("../types").RuleModule<[Option]>;
|
|
17
|
+
//# sourceMappingURL=attrs-newline.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"attrs-newline.d.ts","sourceRoot":"","sources":["../../lib/rules/attrs-newline.js"],"names":[],"mappings":";;;wBA4BU,UAAU;;iBA3BN,OAAO,UAAU,EAAE,SAAS;;uBAG5B,iBAAiB;qBACjB,gBAAgB;wBAChB,mBAAmB;;;;;;kBAMnB,OAAO,UAAU,EAAE,UAAU,CAAC,CAAC,MAAM,CAAC,CAAC"}
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
declare namespace _exports {
|
|
2
|
+
export { Tag, Comment, Doctype, ScriptTag, StyleTag, Text, AnyNode, OpenTagEnd, CloseTag, Line, AnyNodeOrLine, Option, RuleModule };
|
|
3
|
+
}
|
|
4
|
+
declare const _exports: RuleModule;
|
|
5
|
+
export = _exports;
|
|
6
|
+
type Tag = import("@html-eslint/types").Tag;
|
|
7
|
+
type Comment = import("@html-eslint/types").Comment;
|
|
8
|
+
type Doctype = import("@html-eslint/types").Doctype;
|
|
9
|
+
type ScriptTag = import("@html-eslint/types").ScriptTag;
|
|
10
|
+
type StyleTag = import("@html-eslint/types").StyleTag;
|
|
11
|
+
type Text = import("@html-eslint/types").Text;
|
|
12
|
+
type AnyNode = import("@html-eslint/types").AnyNode;
|
|
13
|
+
type OpenTagEnd = import("@html-eslint/types").OpenTagEnd;
|
|
14
|
+
type CloseTag = import("@html-eslint/types").CloseTag;
|
|
15
|
+
type Line = import("../types").Line;
|
|
16
|
+
type AnyNodeOrLine = AnyNode | Line;
|
|
17
|
+
type Option = {
|
|
18
|
+
skip?: string[] | undefined;
|
|
19
|
+
inline?: string[] | undefined;
|
|
20
|
+
};
|
|
21
|
+
type RuleModule = import("../types").RuleModule<[Option]>;
|
|
22
|
+
//# sourceMappingURL=element-newline.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"element-newline.d.ts","sourceRoot":"","sources":["../../lib/rules/element-newline.js"],"names":[],"mappings":";;;wBA4EU,UAAU;;WA3EN,OAAO,oBAAoB,EAAE,GAAG;eAChC,OAAO,oBAAoB,EAAE,OAAO;eACpC,OAAO,oBAAoB,EAAE,OAAO;iBACpC,OAAO,oBAAoB,EAAE,SAAS;gBACtC,OAAO,oBAAoB,EAAE,QAAQ;YACrC,OAAO,oBAAoB,EAAE,IAAI;eACjC,OAAO,oBAAoB,EAAE,OAAO;kBACpC,OAAO,oBAAoB,EAAE,UAAU;gBACvC,OAAO,oBAAoB,EAAE,QAAQ;YACrC,OAAO,UAAU,EAAE,IAAI;qBACvB,OAAO,GAAG,IAAI;;;;;kBAMd,OAAO,UAAU,EAAE,UAAU,CAAC,CAAC,MAAM,CAAC,CAAC"}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
declare namespace _exports {
|
|
2
|
+
export { Tag, ScriptTag, StyleTag, Option1, Option2, 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 Option1 = "camelCase" | "snake_case" | "PascalCase" | "kebab-case" | "regex";
|
|
10
|
+
type Option2 = {
|
|
11
|
+
pattern: string;
|
|
12
|
+
flags?: string | undefined;
|
|
13
|
+
};
|
|
14
|
+
type RuleModule = import("../types").RuleModule<[Option1, Option2]>;
|
|
15
|
+
//# sourceMappingURL=id-naming-convention.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"id-naming-convention.d.ts","sourceRoot":"","sources":["../../lib/rules/id-naming-convention.js"],"names":[],"mappings":";;;wBA2CU,UAAU;;WA1CN,OAAO,oBAAoB,EAAE,GAAG;iBAChC,OAAO,oBAAoB,EAAE,SAAS;gBACtC,OAAO,oBAAoB,EAAE,QAAQ;eAEtC,WAAW,GAAG,YAAY,GAAG,YAAY,GAAG,YAAY,GAAG,OAAO;;aAEjE,MAAM;;;kBAGN,OAAO,UAAU,EAAE,UAAU,CAAC,CAAC,OAAO,EAAE,OAAO,CAAC,CAAC"}
|
|
@@ -0,0 +1,55 @@
|
|
|
1
|
+
export = IndentLevel;
|
|
2
|
+
/**
|
|
3
|
+
* @typedef {import("@html-eslint/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("@html-eslint/types").AnyNode;
|
|
53
|
+
type IncLevelOptions = { [key in AnyNode["type"]]?: number; };
|
|
54
|
+
type GetIncreasingLevel = (node: AnyNode) => number;
|
|
55
|
+
//# sourceMappingURL=indent-level.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
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,oBAAoB,EAAE,OAAO;uBACpC,GAAG,GAAG,IAAI,OAAO,CAAC,MAAM,CAAC,CAAC,CAAC,EAAE,MAAM,GAAC;0BACpC,CAAC,IAAI,EAAE,OAAO,KAAK,MAAM"}
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
declare namespace _exports {
|
|
2
|
+
export { AnyNode, Line, Tag, RuleListener, Context, TemplateText, Token, SourceCode, Range, SourceLocation, TemplateLiteral, OpenTemplate, CloseTemplate, AnyNodeOrLine, IndentType, MessageId, IndentOptionInfo, Option1, Option2, RuleModule };
|
|
3
|
+
}
|
|
4
|
+
declare const _exports: RuleModule;
|
|
5
|
+
export = _exports;
|
|
6
|
+
type AnyNode = import("@html-eslint/types").AnyNode;
|
|
7
|
+
type Line = import("../../types").Line;
|
|
8
|
+
type Tag = import("@html-eslint/types").Tag;
|
|
9
|
+
type RuleListener = import("../../types").RuleListener;
|
|
10
|
+
type Context = import("../../types").Context<any[]>;
|
|
11
|
+
type TemplateText = import("@html-eslint/types").TemplateText;
|
|
12
|
+
type Token = import("eslint").AST.Token;
|
|
13
|
+
type SourceCode = import("eslint").SourceCode;
|
|
14
|
+
type Range = import("eslint").AST.Range;
|
|
15
|
+
type SourceLocation = import("eslint").AST.SourceLocation;
|
|
16
|
+
type TemplateLiteral = import("@html-eslint/types").TemplateLiteral;
|
|
17
|
+
type OpenTemplate = import("@html-eslint/types").OpenTemplate;
|
|
18
|
+
type CloseTemplate = import("@html-eslint/types").CloseTemplate;
|
|
19
|
+
type AnyNodeOrLine = AnyNode | Line;
|
|
20
|
+
type IndentType = {
|
|
21
|
+
TAB: "tab";
|
|
22
|
+
SPACE: "space";
|
|
23
|
+
};
|
|
24
|
+
type MessageId = {
|
|
25
|
+
WRONG_INDENT: "wrongIndent";
|
|
26
|
+
};
|
|
27
|
+
type IndentOptionInfo = {
|
|
28
|
+
indentType: IndentType["TAB"] | IndentType["SPACE"];
|
|
29
|
+
indentSize: number;
|
|
30
|
+
indentChar: string;
|
|
31
|
+
};
|
|
32
|
+
type Option1 = "tab" | number;
|
|
33
|
+
type Option2 = {
|
|
34
|
+
Attribute?: number | undefined;
|
|
35
|
+
tagChildrenIndent?: Record<string, number> | undefined;
|
|
36
|
+
};
|
|
37
|
+
type RuleModule = import("../../types").RuleModule<[Option1, Option2]>;
|
|
38
|
+
//# sourceMappingURL=indent.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"indent.d.ts","sourceRoot":"","sources":["../../../lib/rules/indent/indent.js"],"names":[],"mappings":";;;wBAgEU,UAAU;;eA/DN,OAAO,oBAAoB,EAAE,OAAO;YACpC,OAAO,aAAa,EAAE,IAAI;WAC1B,OAAO,oBAAoB,EAAE,GAAG;oBAChC,OAAO,aAAa,EAAE,YAAY;eAClC,OAAO,aAAa,EAAE,OAAO,CAAC,GAAG,EAAE,CAAC;oBACpC,OAAO,oBAAoB,EAAE,YAAY;aACzC,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,oBAAoB,EAAE,eAAe;oBAC5C,OAAO,oBAAoB,EAAE,YAAY;qBACzC,OAAO,oBAAoB,EAAE,aAAa;qBAE3C,OAAO,GAAG,IAAI;;SAEb,KAAK;WACL,OAAO;;;kBAEP,aAAa;;;gBAEb,UAAU,CAAC,KAAK,CAAC,GAAG,UAAU,CAAC,OAAO,CAAC;gBACvC,MAAM;gBACN,MAAM;;eAEP,KAAK,GAAG,MAAM;;;;;kBAKb,OAAO,aAAa,EAAE,UAAU,CAAC,CAAC,OAAO,EAAE,OAAO,CAAC,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../lib/rules/indent/index.js"],"names":[],"mappings":""}
|
|
@@ -0,0 +1,68 @@
|
|
|
1
|
+
declare const _exports: {
|
|
2
|
+
"require-lang": import("../types").RuleModule<[]>;
|
|
3
|
+
"require-img-alt": import("../types").RuleModule<[requireImgAlt.Option]>;
|
|
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<[noExtraSpacingAttrs.Option]>;
|
|
10
|
+
"no-extra-spacing-text": import("../types").RuleModule<[noExtraSpacingText.Option]>;
|
|
11
|
+
"attrs-newline": import("../types").RuleModule<[attrsNewline.Option]>;
|
|
12
|
+
"element-newline": import("../types").RuleModule<[elementNewLine.Option]>;
|
|
13
|
+
"no-skip-heading-levels": import("../types").RuleModule<[]>;
|
|
14
|
+
"require-li-container": import("../types").RuleModule<[]>;
|
|
15
|
+
indent: import("../types").RuleModule<[indent.Option1, indent.Option2]>;
|
|
16
|
+
quotes: import("../types").RuleModule<[quotes.Option]>;
|
|
17
|
+
"id-naming-convention": import("../types").RuleModule<[idNamingConvention.Option1, idNamingConvention.Option2]>;
|
|
18
|
+
"no-obsolete-tags": import("../types").RuleModule<[]>;
|
|
19
|
+
"require-attrs": import("../types").RuleModule<requireAttrs.Option[]>;
|
|
20
|
+
"require-closing-tags": import("../types").RuleModule<[requireClosingTags.Option]>;
|
|
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<[noMultipleEmptyLines.Option]>;
|
|
33
|
+
"no-accesskey-attrs": import("../types").RuleModule<[]>;
|
|
34
|
+
"no-restricted-attrs": import("../types").RuleModule<noRestrictedAttrs.Options>;
|
|
35
|
+
"no-trailing-spaces": import("../types").RuleModule<[]>;
|
|
36
|
+
"no-restricted-attr-values": import("../types").RuleModule<noRestrictedAttrValues.Options>;
|
|
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<[requireOpenGraphProtocol.Option]>;
|
|
43
|
+
"require-form-method": import("../types").RuleModule<[]>;
|
|
44
|
+
"sort-attrs": import("../types").RuleModule<[sortAttrs.Option]>;
|
|
45
|
+
"prefer-https": import("../types").RuleModule<[]>;
|
|
46
|
+
"require-input-label": import("../types").RuleModule<[]>;
|
|
47
|
+
"max-element-depth": import("../types").RuleModule<[maxElementDepth.Option]>;
|
|
48
|
+
"require-explicit-size": import("../types").RuleModule<[requireExplicitSize.Option]>;
|
|
49
|
+
};
|
|
50
|
+
export = _exports;
|
|
51
|
+
import requireImgAlt = require("./require-img-alt");
|
|
52
|
+
import noExtraSpacingAttrs = require("./no-extra-spacing-attrs");
|
|
53
|
+
import noExtraSpacingText = require("./no-extra-spacing-text");
|
|
54
|
+
import attrsNewline = require("./attrs-newline");
|
|
55
|
+
import elementNewLine = require("./element-newline");
|
|
56
|
+
import indent = require("./indent/indent");
|
|
57
|
+
import quotes = require("./quotes");
|
|
58
|
+
import idNamingConvention = require("./id-naming-convention");
|
|
59
|
+
import requireAttrs = require("./require-attrs");
|
|
60
|
+
import requireClosingTags = require("./require-closing-tags");
|
|
61
|
+
import noMultipleEmptyLines = require("./no-multiple-empty-lines");
|
|
62
|
+
import noRestrictedAttrs = require("./no-restricted-attrs");
|
|
63
|
+
import noRestrictedAttrValues = require("./no-restricted-attr-values");
|
|
64
|
+
import requireOpenGraphProtocol = require("./require-open-graph-protocol");
|
|
65
|
+
import sortAttrs = require("./sort-attrs");
|
|
66
|
+
import maxElementDepth = require("./max-element-depth");
|
|
67
|
+
import requireExplicitSize = require("./require-explicit-size");
|
|
68
|
+
//# sourceMappingURL=index.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../lib/rules/index.js"],"names":[],"mappings":""}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
declare namespace _exports {
|
|
2
|
+
export { Tag, StyleTag, ScriptTag, RuleModule };
|
|
3
|
+
}
|
|
4
|
+
declare const _exports: RuleModule;
|
|
5
|
+
export = _exports;
|
|
6
|
+
type Tag = import("@html-eslint/types").Tag;
|
|
7
|
+
type StyleTag = import("@html-eslint/types").StyleTag;
|
|
8
|
+
type ScriptTag = import("@html-eslint/types").ScriptTag;
|
|
9
|
+
type RuleModule = import("../types").RuleModule<[]>;
|
|
10
|
+
//# sourceMappingURL=lowercase.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"lowercase.d.ts","sourceRoot":"","sources":["../../lib/rules/lowercase.js"],"names":[],"mappings":";;;wBAkBU,UAAU;;WAjBN,OAAO,oBAAoB,EAAE,GAAG;gBAChC,OAAO,oBAAoB,EAAE,QAAQ;iBACrC,OAAO,oBAAoB,EAAE,SAAS;kBACtC,OAAO,UAAU,EAAE,UAAU,CAAC,EAAE,CAAC"}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
declare namespace _exports {
|
|
2
|
+
export { Tag, StyleTag, ScriptTag, Option, RuleModule };
|
|
3
|
+
}
|
|
4
|
+
declare const _exports: RuleModule;
|
|
5
|
+
export = _exports;
|
|
6
|
+
type Tag = import("@html-eslint/types").Tag;
|
|
7
|
+
type StyleTag = import("@html-eslint/types").StyleTag;
|
|
8
|
+
type ScriptTag = import("@html-eslint/types").ScriptTag;
|
|
9
|
+
type Option = {
|
|
10
|
+
max?: number | undefined;
|
|
11
|
+
};
|
|
12
|
+
type RuleModule = import("../types").RuleModule<[Option]>;
|
|
13
|
+
//# 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":";;;wBAkBU,UAAU;;WAjBN,OAAO,oBAAoB,EAAE,GAAG;gBAChC,OAAO,oBAAoB,EAAE,QAAQ;iBACrC,OAAO,oBAAoB,EAAE,SAAS;;;;kBAItC,OAAO,UAAU,EAAE,UAAU,CAAC,CAAC,MAAM,CAAC,CAAC"}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
declare namespace _exports {
|
|
2
|
+
export { Tag, StyleTag, ScriptTag, RuleModule };
|
|
3
|
+
}
|
|
4
|
+
declare const _exports: RuleModule;
|
|
5
|
+
export = _exports;
|
|
6
|
+
type Tag = import("@html-eslint/types").Tag;
|
|
7
|
+
type StyleTag = import("@html-eslint/types").StyleTag;
|
|
8
|
+
type ScriptTag = import("@html-eslint/types").ScriptTag;
|
|
9
|
+
type RuleModule = import("../types").RuleModule<[]>;
|
|
10
|
+
//# sourceMappingURL=no-abstract-roles.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"no-abstract-roles.d.ts","sourceRoot":"","sources":["../../lib/rules/no-abstract-roles.js"],"names":[],"mappings":";;;wBA+BU,UAAU;;WA9BN,OAAO,oBAAoB,EAAE,GAAG;gBAChC,OAAO,oBAAoB,EAAE,QAAQ;iBACrC,OAAO,oBAAoB,EAAE,SAAS;kBACtC,OAAO,UAAU,EAAE,UAAU,CAAC,EAAE,CAAC"}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
declare namespace _exports {
|
|
2
|
+
export { Tag, StyleTag, ScriptTag, RuleModule };
|
|
3
|
+
}
|
|
4
|
+
declare const _exports: RuleModule;
|
|
5
|
+
export = _exports;
|
|
6
|
+
type Tag = import("@html-eslint/types").Tag;
|
|
7
|
+
type StyleTag = import("@html-eslint/types").StyleTag;
|
|
8
|
+
type ScriptTag = import("@html-eslint/types").ScriptTag;
|
|
9
|
+
type RuleModule = import("../types").RuleModule<[]>;
|
|
10
|
+
//# sourceMappingURL=no-accesskey-attrs.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"no-accesskey-attrs.d.ts","sourceRoot":"","sources":["../../lib/rules/no-accesskey-attrs.js"],"names":[],"mappings":";;;wBAgBU,UAAU;;WAfN,OAAO,oBAAoB,EAAE,GAAG;gBAChC,OAAO,oBAAoB,EAAE,QAAQ;iBACrC,OAAO,oBAAoB,EAAE,SAAS;kBACtC,OAAO,UAAU,EAAE,UAAU,CAAC,EAAE,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
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,CAAC,EAAE,CAAC"}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
declare namespace _exports {
|
|
2
|
+
export { Tag, StyleTag, ScriptTag, RuleModule };
|
|
3
|
+
}
|
|
4
|
+
declare const _exports: RuleModule;
|
|
5
|
+
export = _exports;
|
|
6
|
+
type Tag = import("@html-eslint/types").Tag;
|
|
7
|
+
type StyleTag = import("@html-eslint/types").StyleTag;
|
|
8
|
+
type ScriptTag = import("@html-eslint/types").ScriptTag;
|
|
9
|
+
type RuleModule = import("../types").RuleModule<[]>;
|
|
10
|
+
//# sourceMappingURL=no-duplicate-attrs.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"no-duplicate-attrs.d.ts","sourceRoot":"","sources":["../../lib/rules/no-duplicate-attrs.js"],"names":[],"mappings":";;;wBAeU,UAAU;;WAdN,OAAO,oBAAoB,EAAE,GAAG;gBAChC,OAAO,oBAAoB,EAAE,QAAQ;iBACrC,OAAO,oBAAoB,EAAE,SAAS;kBACtC,OAAO,UAAU,EAAE,UAAU,CAAC,EAAE,CAAC"}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
declare namespace _exports {
|
|
2
|
+
export { Tag, StyleTag, ScriptTag, AttributeValue, RuleModule };
|
|
3
|
+
}
|
|
4
|
+
declare const _exports: RuleModule;
|
|
5
|
+
export = _exports;
|
|
6
|
+
type Tag = import("@html-eslint/types").Tag;
|
|
7
|
+
type StyleTag = import("@html-eslint/types").StyleTag;
|
|
8
|
+
type ScriptTag = import("@html-eslint/types").ScriptTag;
|
|
9
|
+
type AttributeValue = import("@html-eslint/types").AttributeValue;
|
|
10
|
+
type RuleModule = import("../types").RuleModule<[]>;
|
|
11
|
+
//# sourceMappingURL=no-duplicate-id.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"no-duplicate-id.d.ts","sourceRoot":"","sources":["../../lib/rules/no-duplicate-id.js"],"names":[],"mappings":";;;wBAsBU,UAAU;;WArBN,OAAO,oBAAoB,EAAE,GAAG;gBAChC,OAAO,oBAAoB,EAAE,QAAQ;iBACrC,OAAO,oBAAoB,EAAE,SAAS;sBACtC,OAAO,oBAAoB,EAAE,cAAc;kBAC3C,OAAO,UAAU,EAAE,UAAU,CAAC,EAAE,CAAC"}
|