@kazupon/eslint-config 0.18.0 → 0.19.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/dist/index.cjs +97 -216
- package/dist/index.d.cts +14216 -3
- package/dist/index.d.ts +14216 -3
- package/dist/index.js +70 -89
- package/package.json +15 -15
- package/dist/config.d.cts +0 -9
- package/dist/config.d.ts +0 -9
- package/dist/configs/comments.d.cts +0 -15
- package/dist/configs/comments.d.ts +0 -15
- package/dist/configs/imports.d.cts +0 -21
- package/dist/configs/imports.d.ts +0 -21
- package/dist/configs/index.d.cts +0 -17
- package/dist/configs/index.d.ts +0 -17
- package/dist/configs/javascript.d.cts +0 -15
- package/dist/configs/javascript.d.ts +0 -15
- package/dist/configs/jsdoc.d.cts +0 -27
- package/dist/configs/jsdoc.d.ts +0 -27
- package/dist/configs/jsonc.d.cts +0 -39
- package/dist/configs/jsonc.d.ts +0 -39
- package/dist/configs/markdown.d.cts +0 -28
- package/dist/configs/markdown.d.ts +0 -28
- package/dist/configs/prettier.d.cts +0 -15
- package/dist/configs/prettier.d.ts +0 -15
- package/dist/configs/promise.d.cts +0 -15
- package/dist/configs/promise.d.ts +0 -15
- package/dist/configs/react.d.cts +0 -26
- package/dist/configs/react.d.ts +0 -26
- package/dist/configs/regexp.d.cts +0 -15
- package/dist/configs/regexp.d.ts +0 -15
- package/dist/configs/svelte.d.cts +0 -21
- package/dist/configs/svelte.d.ts +0 -21
- package/dist/configs/toml.d.cts +0 -15
- package/dist/configs/toml.d.ts +0 -15
- package/dist/configs/typescript.d.cts +0 -38
- package/dist/configs/typescript.d.ts +0 -38
- package/dist/configs/unicorn.d.cts +0 -20
- package/dist/configs/unicorn.d.ts +0 -20
- package/dist/configs/vitest.d.cts +0 -22
- package/dist/configs/vitest.d.ts +0 -22
- package/dist/configs/vue.d.cts +0 -36
- package/dist/configs/vue.d.ts +0 -36
- package/dist/configs/yml.d.cts +0 -22
- package/dist/configs/yml.d.ts +0 -22
- package/dist/globs.d.cts +0 -14
- package/dist/globs.d.ts +0 -14
- package/dist/types/gens/comments.d.cts +0 -65
- package/dist/types/gens/comments.d.ts +0 -65
- package/dist/types/gens/eslint.d.cts +0 -23
- package/dist/types/gens/eslint.d.ts +0 -23
- package/dist/types/gens/imports.d.cts +0 -520
- package/dist/types/gens/imports.d.ts +0 -520
- package/dist/types/gens/javascript.d.cts +0 -3163
- package/dist/types/gens/javascript.d.ts +0 -3163
- package/dist/types/gens/jsdoc.d.cts +0 -796
- package/dist/types/gens/jsdoc.d.ts +0 -796
- package/dist/types/gens/jsonc.d.cts +0 -513
- package/dist/types/gens/jsonc.d.ts +0 -513
- package/dist/types/gens/markdown.d.cts +0 -42
- package/dist/types/gens/markdown.d.ts +0 -42
- package/dist/types/gens/prettier.d.cts +0 -2
- package/dist/types/gens/prettier.d.ts +0 -2
- package/dist/types/gens/promise.d.cts +0 -113
- package/dist/types/gens/promise.d.ts +0 -113
- package/dist/types/gens/react.d.cts +0 -1053
- package/dist/types/gens/react.d.ts +0 -1053
- package/dist/types/gens/regexp.d.cts +0 -553
- package/dist/types/gens/regexp.d.ts +0 -553
- package/dist/types/gens/svelte.d.cts +0 -491
- package/dist/types/gens/svelte.d.ts +0 -491
- package/dist/types/gens/toml.d.cts +0 -256
- package/dist/types/gens/toml.d.ts +0 -256
- package/dist/types/gens/typescript.d.cts +0 -1578
- package/dist/types/gens/typescript.d.ts +0 -1578
- package/dist/types/gens/unicorn.d.cts +0 -925
- package/dist/types/gens/unicorn.d.ts +0 -925
- package/dist/types/gens/vitest.d.cts +0 -377
- package/dist/types/gens/vitest.d.ts +0 -377
- package/dist/types/gens/vue.d.cts +0 -2746
- package/dist/types/gens/vue.d.ts +0 -2746
- package/dist/types/gens/yml.d.cts +0 -375
- package/dist/types/gens/yml.d.ts +0 -375
- package/dist/types/index.d.cts +0 -19
- package/dist/types/index.d.ts +0 -19
- package/dist/types/overrides.d.cts +0 -8
- package/dist/types/overrides.d.ts +0 -8
- package/dist/utils.d.cts +0 -18
- package/dist/utils.d.ts +0 -18
|
@@ -1,2746 +0,0 @@
|
|
|
1
|
-
import type { Linter } from 'eslint';
|
|
2
|
-
export interface VueRules {
|
|
3
|
-
'vue-composable/composable-placement'?: Linter.RuleEntry<[]>;
|
|
4
|
-
'vue-composable/lifecycle-placement'?: Linter.RuleEntry<[]>;
|
|
5
|
-
/**
|
|
6
|
-
* enforce the `<style>` tags to be plain or have the `scoped` or `module` attribute
|
|
7
|
-
* @see https://future-architect.github.io/eslint-plugin-vue-scoped-css/rules/enforce-style-type.html
|
|
8
|
-
*/
|
|
9
|
-
'vue-scoped-css/enforce-style-type'?: Linter.RuleEntry<VueScopedCssEnforceStyleType>;
|
|
10
|
-
/**
|
|
11
|
-
* disallow using deprecated deep combinators
|
|
12
|
-
* @see https://future-architect.github.io/eslint-plugin-vue-scoped-css/rules/no-deprecated-deep-combinator.html
|
|
13
|
-
*/
|
|
14
|
-
'vue-scoped-css/no-deprecated-deep-combinator'?: Linter.RuleEntry<[]>;
|
|
15
|
-
/**
|
|
16
|
-
* disallow v-enter and v-leave classes.
|
|
17
|
-
* @see https://future-architect.github.io/eslint-plugin-vue-scoped-css/rules/no-deprecated-v-enter-v-leave-class.html
|
|
18
|
-
*/
|
|
19
|
-
'vue-scoped-css/no-deprecated-v-enter-v-leave-class'?: Linter.RuleEntry<[]>;
|
|
20
|
-
/**
|
|
21
|
-
* disallow parent selector for `::v-global` pseudo-element
|
|
22
|
-
* @see https://future-architect.github.io/eslint-plugin-vue-scoped-css/rules/no-parent-of-v-global.html
|
|
23
|
-
*/
|
|
24
|
-
'vue-scoped-css/no-parent-of-v-global'?: Linter.RuleEntry<[]>;
|
|
25
|
-
/**
|
|
26
|
-
* disallow parsing errors in `<style>`
|
|
27
|
-
* @see https://future-architect.github.io/eslint-plugin-vue-scoped-css/rules/no-parsing-error.html
|
|
28
|
-
*/
|
|
29
|
-
'vue-scoped-css/no-parsing-error'?: Linter.RuleEntry<[]>;
|
|
30
|
-
/**
|
|
31
|
-
* disallow `@keyframes` which don't use in Scoped CSS
|
|
32
|
-
* @see https://future-architect.github.io/eslint-plugin-vue-scoped-css/rules/no-unused-keyframes.html
|
|
33
|
-
*/
|
|
34
|
-
'vue-scoped-css/no-unused-keyframes'?: Linter.RuleEntry<VueScopedCssNoUnusedKeyframes>;
|
|
35
|
-
/**
|
|
36
|
-
* disallow selectors defined in Scoped CSS that don't use in `<template>`
|
|
37
|
-
* @see https://future-architect.github.io/eslint-plugin-vue-scoped-css/rules/no-unused-selector.html
|
|
38
|
-
*/
|
|
39
|
-
'vue-scoped-css/no-unused-selector'?: Linter.RuleEntry<VueScopedCssNoUnusedSelector>;
|
|
40
|
-
/**
|
|
41
|
-
* enforce the `<style>` tags to has the `scoped` attribute
|
|
42
|
-
* @see https://future-architect.github.io/eslint-plugin-vue-scoped-css/rules/require-scoped.html
|
|
43
|
-
* @deprecated
|
|
44
|
-
*/
|
|
45
|
-
'vue-scoped-css/require-scoped'?: Linter.RuleEntry<VueScopedCssRequireScoped>;
|
|
46
|
-
/**
|
|
47
|
-
* disallow selectors defined that is not used inside `<template>`
|
|
48
|
-
* @see https://future-architect.github.io/eslint-plugin-vue-scoped-css/rules/require-selector-used-inside.html
|
|
49
|
-
*/
|
|
50
|
-
'vue-scoped-css/require-selector-used-inside'?: Linter.RuleEntry<VueScopedCssRequireSelectorUsedInside>;
|
|
51
|
-
/**
|
|
52
|
-
* require selector argument to be passed to `::v-deep()`
|
|
53
|
-
* @see https://future-architect.github.io/eslint-plugin-vue-scoped-css/rules/require-v-deep-argument.html
|
|
54
|
-
*/
|
|
55
|
-
'vue-scoped-css/require-v-deep-argument'?: Linter.RuleEntry<[]>;
|
|
56
|
-
/**
|
|
57
|
-
* require selector argument to be passed to `::v-global()`
|
|
58
|
-
* @see https://future-architect.github.io/eslint-plugin-vue-scoped-css/rules/require-v-global-argument.html
|
|
59
|
-
*/
|
|
60
|
-
'vue-scoped-css/require-v-global-argument'?: Linter.RuleEntry<[]>;
|
|
61
|
-
/**
|
|
62
|
-
* require selector argument to be passed to `::v-slotted()`
|
|
63
|
-
* @see https://future-architect.github.io/eslint-plugin-vue-scoped-css/rules/require-v-slotted-argument.html
|
|
64
|
-
*/
|
|
65
|
-
'vue-scoped-css/require-v-slotted-argument'?: Linter.RuleEntry<[]>;
|
|
66
|
-
/**
|
|
67
|
-
* enforce `:deep()`/`::v-deep()` style
|
|
68
|
-
* @see https://future-architect.github.io/eslint-plugin-vue-scoped-css/rules/v-deep-pseudo-style.html
|
|
69
|
-
*/
|
|
70
|
-
'vue-scoped-css/v-deep-pseudo-style'?: Linter.RuleEntry<VueScopedCssVDeepPseudoStyle>;
|
|
71
|
-
/**
|
|
72
|
-
* enforce `:global()`/`::v-global()` style
|
|
73
|
-
* @see https://future-architect.github.io/eslint-plugin-vue-scoped-css/rules/v-global-pseudo-style.html
|
|
74
|
-
*/
|
|
75
|
-
'vue-scoped-css/v-global-pseudo-style'?: Linter.RuleEntry<VueScopedCssVGlobalPseudoStyle>;
|
|
76
|
-
/**
|
|
77
|
-
* enforce `:slotted()`/`::v-slotted()` style
|
|
78
|
-
* @see https://future-architect.github.io/eslint-plugin-vue-scoped-css/rules/v-slotted-pseudo-style.html
|
|
79
|
-
*/
|
|
80
|
-
'vue-scoped-css/v-slotted-pseudo-style'?: Linter.RuleEntry<VueScopedCssVSlottedPseudoStyle>;
|
|
81
|
-
/**
|
|
82
|
-
* Enforce linebreaks after opening and before closing array brackets in `<template>`
|
|
83
|
-
* @see https://eslint.vuejs.org/rules/array-bracket-newline.html
|
|
84
|
-
*/
|
|
85
|
-
'vue/array-bracket-newline'?: Linter.RuleEntry<VueArrayBracketNewline>;
|
|
86
|
-
/**
|
|
87
|
-
* Enforce consistent spacing inside array brackets in `<template>`
|
|
88
|
-
* @see https://eslint.vuejs.org/rules/array-bracket-spacing.html
|
|
89
|
-
*/
|
|
90
|
-
'vue/array-bracket-spacing'?: Linter.RuleEntry<VueArrayBracketSpacing>;
|
|
91
|
-
/**
|
|
92
|
-
* Enforce line breaks after each array element in `<template>`
|
|
93
|
-
* @see https://eslint.vuejs.org/rules/array-element-newline.html
|
|
94
|
-
*/
|
|
95
|
-
'vue/array-element-newline'?: Linter.RuleEntry<VueArrayElementNewline>;
|
|
96
|
-
/**
|
|
97
|
-
* Enforce consistent spacing before and after the arrow in arrow functions in `<template>`
|
|
98
|
-
* @see https://eslint.vuejs.org/rules/arrow-spacing.html
|
|
99
|
-
*/
|
|
100
|
-
'vue/arrow-spacing'?: Linter.RuleEntry<VueArrowSpacing>;
|
|
101
|
-
/**
|
|
102
|
-
* enforce attribute naming style on custom components in template
|
|
103
|
-
* @see https://eslint.vuejs.org/rules/attribute-hyphenation.html
|
|
104
|
-
*/
|
|
105
|
-
'vue/attribute-hyphenation'?: Linter.RuleEntry<VueAttributeHyphenation>;
|
|
106
|
-
/**
|
|
107
|
-
* enforce order of attributes
|
|
108
|
-
* @see https://eslint.vuejs.org/rules/attributes-order.html
|
|
109
|
-
*/
|
|
110
|
-
'vue/attributes-order'?: Linter.RuleEntry<VueAttributesOrder>;
|
|
111
|
-
/**
|
|
112
|
-
* disallow use other than available `lang`
|
|
113
|
-
* @see https://eslint.vuejs.org/rules/block-lang.html
|
|
114
|
-
*/
|
|
115
|
-
'vue/block-lang'?: Linter.RuleEntry<VueBlockLang>;
|
|
116
|
-
/**
|
|
117
|
-
* enforce order of component top-level elements
|
|
118
|
-
* @see https://eslint.vuejs.org/rules/block-order.html
|
|
119
|
-
*/
|
|
120
|
-
'vue/block-order'?: Linter.RuleEntry<VueBlockOrder>;
|
|
121
|
-
/**
|
|
122
|
-
* Disallow or enforce spaces inside of blocks after opening block and before closing block in `<template>`
|
|
123
|
-
* @see https://eslint.vuejs.org/rules/block-spacing.html
|
|
124
|
-
*/
|
|
125
|
-
'vue/block-spacing'?: Linter.RuleEntry<VueBlockSpacing>;
|
|
126
|
-
/**
|
|
127
|
-
* enforce line breaks after opening and before closing block-level tags
|
|
128
|
-
* @see https://eslint.vuejs.org/rules/block-tag-newline.html
|
|
129
|
-
*/
|
|
130
|
-
'vue/block-tag-newline'?: Linter.RuleEntry<VueBlockTagNewline>;
|
|
131
|
-
/**
|
|
132
|
-
* Enforce consistent brace style for blocks in `<template>`
|
|
133
|
-
* @see https://eslint.vuejs.org/rules/brace-style.html
|
|
134
|
-
*/
|
|
135
|
-
'vue/brace-style'?: Linter.RuleEntry<VueBraceStyle>;
|
|
136
|
-
/**
|
|
137
|
-
* Enforce camelcase naming convention in `<template>`
|
|
138
|
-
* @see https://eslint.vuejs.org/rules/camelcase.html
|
|
139
|
-
*/
|
|
140
|
-
'vue/camelcase'?: Linter.RuleEntry<VueCamelcase>;
|
|
141
|
-
/**
|
|
142
|
-
* Require or disallow trailing commas in `<template>`
|
|
143
|
-
* @see https://eslint.vuejs.org/rules/comma-dangle.html
|
|
144
|
-
*/
|
|
145
|
-
'vue/comma-dangle'?: Linter.RuleEntry<VueCommaDangle>;
|
|
146
|
-
/**
|
|
147
|
-
* Enforce consistent spacing before and after commas in `<template>`
|
|
148
|
-
* @see https://eslint.vuejs.org/rules/comma-spacing.html
|
|
149
|
-
*/
|
|
150
|
-
'vue/comma-spacing'?: Linter.RuleEntry<VueCommaSpacing>;
|
|
151
|
-
/**
|
|
152
|
-
* Enforce consistent comma style in `<template>`
|
|
153
|
-
* @see https://eslint.vuejs.org/rules/comma-style.html
|
|
154
|
-
*/
|
|
155
|
-
'vue/comma-style'?: Linter.RuleEntry<VueCommaStyle>;
|
|
156
|
-
/**
|
|
157
|
-
* support comment-directives in `<template>`
|
|
158
|
-
* @see https://eslint.vuejs.org/rules/comment-directive.html
|
|
159
|
-
*/
|
|
160
|
-
'vue/comment-directive'?: Linter.RuleEntry<VueCommentDirective>;
|
|
161
|
-
/**
|
|
162
|
-
* enforce component API style
|
|
163
|
-
* @see https://eslint.vuejs.org/rules/component-api-style.html
|
|
164
|
-
*/
|
|
165
|
-
'vue/component-api-style'?: Linter.RuleEntry<VueComponentApiStyle>;
|
|
166
|
-
/**
|
|
167
|
-
* enforce specific casing for component definition name
|
|
168
|
-
* @see https://eslint.vuejs.org/rules/component-definition-name-casing.html
|
|
169
|
-
*/
|
|
170
|
-
'vue/component-definition-name-casing'?: Linter.RuleEntry<VueComponentDefinitionNameCasing>;
|
|
171
|
-
/**
|
|
172
|
-
* enforce specific casing for the component naming style in template
|
|
173
|
-
* @see https://eslint.vuejs.org/rules/component-name-in-template-casing.html
|
|
174
|
-
*/
|
|
175
|
-
'vue/component-name-in-template-casing'?: Linter.RuleEntry<VueComponentNameInTemplateCasing>;
|
|
176
|
-
/**
|
|
177
|
-
* enforce the casing of component name in `components` options
|
|
178
|
-
* @see https://eslint.vuejs.org/rules/component-options-name-casing.html
|
|
179
|
-
*/
|
|
180
|
-
'vue/component-options-name-casing'?: Linter.RuleEntry<VueComponentOptionsNameCasing>;
|
|
181
|
-
/**
|
|
182
|
-
* enforce order of component top-level elements
|
|
183
|
-
* @see https://eslint.vuejs.org/rules/component-tags-order.html
|
|
184
|
-
* @deprecated
|
|
185
|
-
*/
|
|
186
|
-
'vue/component-tags-order'?: Linter.RuleEntry<VueComponentTagsOrder>;
|
|
187
|
-
/**
|
|
188
|
-
* enforce specific casing for custom event name
|
|
189
|
-
* @see https://eslint.vuejs.org/rules/custom-event-name-casing.html
|
|
190
|
-
*/
|
|
191
|
-
'vue/custom-event-name-casing'?: Linter.RuleEntry<VueCustomEventNameCasing>;
|
|
192
|
-
/**
|
|
193
|
-
* enforce declaration style of `defineEmits`
|
|
194
|
-
* @see https://eslint.vuejs.org/rules/define-emits-declaration.html
|
|
195
|
-
*/
|
|
196
|
-
'vue/define-emits-declaration'?: Linter.RuleEntry<VueDefineEmitsDeclaration>;
|
|
197
|
-
/**
|
|
198
|
-
* enforce order of `defineEmits` and `defineProps` compiler macros
|
|
199
|
-
* @see https://eslint.vuejs.org/rules/define-macros-order.html
|
|
200
|
-
*/
|
|
201
|
-
'vue/define-macros-order'?: Linter.RuleEntry<VueDefineMacrosOrder>;
|
|
202
|
-
/**
|
|
203
|
-
* enforce declaration style of `defineProps`
|
|
204
|
-
* @see https://eslint.vuejs.org/rules/define-props-declaration.html
|
|
205
|
-
*/
|
|
206
|
-
'vue/define-props-declaration'?: Linter.RuleEntry<VueDefinePropsDeclaration>;
|
|
207
|
-
/**
|
|
208
|
-
* Enforce consistent newlines before and after dots in `<template>`
|
|
209
|
-
* @see https://eslint.vuejs.org/rules/dot-location.html
|
|
210
|
-
*/
|
|
211
|
-
'vue/dot-location'?: Linter.RuleEntry<VueDotLocation>;
|
|
212
|
-
/**
|
|
213
|
-
* Enforce dot notation whenever possible in `<template>`
|
|
214
|
-
* @see https://eslint.vuejs.org/rules/dot-notation.html
|
|
215
|
-
*/
|
|
216
|
-
'vue/dot-notation'?: Linter.RuleEntry<VueDotNotation>;
|
|
217
|
-
/**
|
|
218
|
-
* enforce or forbid the use of the `scoped` and `module` attributes in SFC top level style tags
|
|
219
|
-
* @see https://eslint.vuejs.org/rules/enforce-style-attribute.html
|
|
220
|
-
*/
|
|
221
|
-
'vue/enforce-style-attribute'?: Linter.RuleEntry<VueEnforceStyleAttribute>;
|
|
222
|
-
/**
|
|
223
|
-
* Require the use of `===` and `!==` in `<template>`
|
|
224
|
-
* @see https://eslint.vuejs.org/rules/eqeqeq.html
|
|
225
|
-
*/
|
|
226
|
-
'vue/eqeqeq'?: Linter.RuleEntry<VueEqeqeq>;
|
|
227
|
-
/**
|
|
228
|
-
* enforce the location of first attribute
|
|
229
|
-
* @see https://eslint.vuejs.org/rules/first-attribute-linebreak.html
|
|
230
|
-
*/
|
|
231
|
-
'vue/first-attribute-linebreak'?: Linter.RuleEntry<VueFirstAttributeLinebreak>;
|
|
232
|
-
/**
|
|
233
|
-
* Require or disallow spacing between function identifiers and their invocations in `<template>`
|
|
234
|
-
* @see https://eslint.vuejs.org/rules/func-call-spacing.html
|
|
235
|
-
*/
|
|
236
|
-
'vue/func-call-spacing'?: Linter.RuleEntry<VueFuncCallSpacing>;
|
|
237
|
-
/**
|
|
238
|
-
* disallow usage of button without an explicit type attribute
|
|
239
|
-
* @see https://eslint.vuejs.org/rules/html-button-has-type.html
|
|
240
|
-
*/
|
|
241
|
-
'vue/html-button-has-type'?: Linter.RuleEntry<VueHtmlButtonHasType>;
|
|
242
|
-
/**
|
|
243
|
-
* require or disallow a line break before tag's closing brackets
|
|
244
|
-
* @see https://eslint.vuejs.org/rules/html-closing-bracket-newline.html
|
|
245
|
-
*/
|
|
246
|
-
'vue/html-closing-bracket-newline'?: Linter.RuleEntry<VueHtmlClosingBracketNewline>;
|
|
247
|
-
/**
|
|
248
|
-
* require or disallow a space before tag's closing brackets
|
|
249
|
-
* @see https://eslint.vuejs.org/rules/html-closing-bracket-spacing.html
|
|
250
|
-
*/
|
|
251
|
-
'vue/html-closing-bracket-spacing'?: Linter.RuleEntry<VueHtmlClosingBracketSpacing>;
|
|
252
|
-
/**
|
|
253
|
-
* enforce unified line brake in HTML comments
|
|
254
|
-
* @see https://eslint.vuejs.org/rules/html-comment-content-newline.html
|
|
255
|
-
*/
|
|
256
|
-
'vue/html-comment-content-newline'?: Linter.RuleEntry<VueHtmlCommentContentNewline>;
|
|
257
|
-
/**
|
|
258
|
-
* enforce unified spacing in HTML comments
|
|
259
|
-
* @see https://eslint.vuejs.org/rules/html-comment-content-spacing.html
|
|
260
|
-
*/
|
|
261
|
-
'vue/html-comment-content-spacing'?: Linter.RuleEntry<VueHtmlCommentContentSpacing>;
|
|
262
|
-
/**
|
|
263
|
-
* enforce consistent indentation in HTML comments
|
|
264
|
-
* @see https://eslint.vuejs.org/rules/html-comment-indent.html
|
|
265
|
-
*/
|
|
266
|
-
'vue/html-comment-indent'?: Linter.RuleEntry<VueHtmlCommentIndent>;
|
|
267
|
-
/**
|
|
268
|
-
* enforce end tag style
|
|
269
|
-
* @see https://eslint.vuejs.org/rules/html-end-tags.html
|
|
270
|
-
*/
|
|
271
|
-
'vue/html-end-tags'?: Linter.RuleEntry<[]>;
|
|
272
|
-
/**
|
|
273
|
-
* enforce consistent indentation in `<template>`
|
|
274
|
-
* @see https://eslint.vuejs.org/rules/html-indent.html
|
|
275
|
-
*/
|
|
276
|
-
'vue/html-indent'?: Linter.RuleEntry<VueHtmlIndent>;
|
|
277
|
-
/**
|
|
278
|
-
* enforce quotes style of HTML attributes
|
|
279
|
-
* @see https://eslint.vuejs.org/rules/html-quotes.html
|
|
280
|
-
*/
|
|
281
|
-
'vue/html-quotes'?: Linter.RuleEntry<VueHtmlQuotes>;
|
|
282
|
-
/**
|
|
283
|
-
* enforce self-closing style
|
|
284
|
-
* @see https://eslint.vuejs.org/rules/html-self-closing.html
|
|
285
|
-
*/
|
|
286
|
-
'vue/html-self-closing'?: Linter.RuleEntry<VueHtmlSelfClosing>;
|
|
287
|
-
/**
|
|
288
|
-
* prevent variables used in JSX to be marked as unused
|
|
289
|
-
* @see https://eslint.vuejs.org/rules/jsx-uses-vars.html
|
|
290
|
-
*/
|
|
291
|
-
'vue/jsx-uses-vars'?: Linter.RuleEntry<[]>;
|
|
292
|
-
/**
|
|
293
|
-
* Enforce consistent spacing between keys and values in object literal properties in `<template>`
|
|
294
|
-
* @see https://eslint.vuejs.org/rules/key-spacing.html
|
|
295
|
-
*/
|
|
296
|
-
'vue/key-spacing'?: Linter.RuleEntry<VueKeySpacing>;
|
|
297
|
-
/**
|
|
298
|
-
* Enforce consistent spacing before and after keywords in `<template>`
|
|
299
|
-
* @see https://eslint.vuejs.org/rules/keyword-spacing.html
|
|
300
|
-
*/
|
|
301
|
-
'vue/keyword-spacing'?: Linter.RuleEntry<VueKeywordSpacing>;
|
|
302
|
-
/**
|
|
303
|
-
* require component name property to match its file name
|
|
304
|
-
* @see https://eslint.vuejs.org/rules/match-component-file-name.html
|
|
305
|
-
*/
|
|
306
|
-
'vue/match-component-file-name'?: Linter.RuleEntry<VueMatchComponentFileName>;
|
|
307
|
-
/**
|
|
308
|
-
* require the registered component name to match the imported component name
|
|
309
|
-
* @see https://eslint.vuejs.org/rules/match-component-import-name.html
|
|
310
|
-
*/
|
|
311
|
-
'vue/match-component-import-name'?: Linter.RuleEntry<[]>;
|
|
312
|
-
/**
|
|
313
|
-
* enforce the maximum number of attributes per line
|
|
314
|
-
* @see https://eslint.vuejs.org/rules/max-attributes-per-line.html
|
|
315
|
-
*/
|
|
316
|
-
'vue/max-attributes-per-line'?: Linter.RuleEntry<VueMaxAttributesPerLine>;
|
|
317
|
-
/**
|
|
318
|
-
* enforce a maximum line length in `.vue` files
|
|
319
|
-
* @see https://eslint.vuejs.org/rules/max-len.html
|
|
320
|
-
*/
|
|
321
|
-
'vue/max-len'?: Linter.RuleEntry<VueMaxLen>;
|
|
322
|
-
/**
|
|
323
|
-
* enforce maximum number of lines in Vue SFC blocks
|
|
324
|
-
* @see https://eslint.vuejs.org/rules/max-lines-per-block.html
|
|
325
|
-
*/
|
|
326
|
-
'vue/max-lines-per-block'?: Linter.RuleEntry<VueMaxLinesPerBlock>;
|
|
327
|
-
/**
|
|
328
|
-
* require component names to be always multi-word
|
|
329
|
-
* @see https://eslint.vuejs.org/rules/multi-word-component-names.html
|
|
330
|
-
*/
|
|
331
|
-
'vue/multi-word-component-names'?: Linter.RuleEntry<VueMultiWordComponentNames>;
|
|
332
|
-
/**
|
|
333
|
-
* require a line break before and after the contents of a multiline element
|
|
334
|
-
* @see https://eslint.vuejs.org/rules/multiline-html-element-content-newline.html
|
|
335
|
-
*/
|
|
336
|
-
'vue/multiline-html-element-content-newline'?: Linter.RuleEntry<VueMultilineHtmlElementContentNewline>;
|
|
337
|
-
/**
|
|
338
|
-
* Enforce newlines between operands of ternary expressions in `<template>`
|
|
339
|
-
* @see https://eslint.vuejs.org/rules/multiline-ternary.html
|
|
340
|
-
*/
|
|
341
|
-
'vue/multiline-ternary'?: Linter.RuleEntry<VueMultilineTernary>;
|
|
342
|
-
/**
|
|
343
|
-
* enforce unified spacing in mustache interpolations
|
|
344
|
-
* @see https://eslint.vuejs.org/rules/mustache-interpolation-spacing.html
|
|
345
|
-
*/
|
|
346
|
-
'vue/mustache-interpolation-spacing'?: Linter.RuleEntry<VueMustacheInterpolationSpacing>;
|
|
347
|
-
/**
|
|
348
|
-
* enforce new lines between multi-line properties in Vue components
|
|
349
|
-
* @see https://eslint.vuejs.org/rules/new-line-between-multi-line-property.html
|
|
350
|
-
*/
|
|
351
|
-
'vue/new-line-between-multi-line-property'?: Linter.RuleEntry<VueNewLineBetweenMultiLineProperty>;
|
|
352
|
-
/**
|
|
353
|
-
* enforce Promise or callback style in `nextTick`
|
|
354
|
-
* @see https://eslint.vuejs.org/rules/next-tick-style.html
|
|
355
|
-
*/
|
|
356
|
-
'vue/next-tick-style'?: Linter.RuleEntry<VueNextTickStyle>;
|
|
357
|
-
/**
|
|
358
|
-
* disallow using arrow functions to define watcher
|
|
359
|
-
* @see https://eslint.vuejs.org/rules/no-arrow-functions-in-watch.html
|
|
360
|
-
*/
|
|
361
|
-
'vue/no-arrow-functions-in-watch'?: Linter.RuleEntry<[]>;
|
|
362
|
-
/**
|
|
363
|
-
* disallow asynchronous actions in computed properties
|
|
364
|
-
* @see https://eslint.vuejs.org/rules/no-async-in-computed-properties.html
|
|
365
|
-
*/
|
|
366
|
-
'vue/no-async-in-computed-properties'?: Linter.RuleEntry<[]>;
|
|
367
|
-
/**
|
|
368
|
-
* disallow the use of bare strings in `<template>`
|
|
369
|
-
* @see https://eslint.vuejs.org/rules/no-bare-strings-in-template.html
|
|
370
|
-
*/
|
|
371
|
-
'vue/no-bare-strings-in-template'?: Linter.RuleEntry<VueNoBareStringsInTemplate>;
|
|
372
|
-
/**
|
|
373
|
-
* disallow boolean defaults
|
|
374
|
-
* @see https://eslint.vuejs.org/rules/no-boolean-default.html
|
|
375
|
-
*/
|
|
376
|
-
'vue/no-boolean-default'?: Linter.RuleEntry<VueNoBooleanDefault>;
|
|
377
|
-
/**
|
|
378
|
-
* disallow element's child contents which would be overwritten by a directive like `v-html` or `v-text`
|
|
379
|
-
* @see https://eslint.vuejs.org/rules/no-child-content.html
|
|
380
|
-
*/
|
|
381
|
-
'vue/no-child-content'?: Linter.RuleEntry<VueNoChildContent>;
|
|
382
|
-
/**
|
|
383
|
-
* disallow accessing computed properties in `data`.
|
|
384
|
-
* @see https://eslint.vuejs.org/rules/no-computed-properties-in-data.html
|
|
385
|
-
*/
|
|
386
|
-
'vue/no-computed-properties-in-data'?: Linter.RuleEntry<[]>;
|
|
387
|
-
/**
|
|
388
|
-
* Disallow the use of `console` in `<template>`
|
|
389
|
-
* @see https://eslint.vuejs.org/rules/no-console.html
|
|
390
|
-
*/
|
|
391
|
-
'vue/no-console'?: Linter.RuleEntry<VueNoConsole>;
|
|
392
|
-
/**
|
|
393
|
-
* Disallow constant expressions in conditions in `<template>`
|
|
394
|
-
* @see https://eslint.vuejs.org/rules/no-constant-condition.html
|
|
395
|
-
*/
|
|
396
|
-
'vue/no-constant-condition'?: Linter.RuleEntry<VueNoConstantCondition>;
|
|
397
|
-
/**
|
|
398
|
-
* disallow custom modifiers on v-model used on the component
|
|
399
|
-
* @see https://eslint.vuejs.org/rules/no-custom-modifiers-on-v-model.html
|
|
400
|
-
*/
|
|
401
|
-
'vue/no-custom-modifiers-on-v-model'?: Linter.RuleEntry<[]>;
|
|
402
|
-
/**
|
|
403
|
-
* disallow using deprecated object declaration on data (in Vue.js 3.0.0+)
|
|
404
|
-
* @see https://eslint.vuejs.org/rules/no-deprecated-data-object-declaration.html
|
|
405
|
-
*/
|
|
406
|
-
'vue/no-deprecated-data-object-declaration'?: Linter.RuleEntry<[]>;
|
|
407
|
-
/**
|
|
408
|
-
* disallow using deprecated `destroyed` and `beforeDestroy` lifecycle hooks (in Vue.js 3.0.0+)
|
|
409
|
-
* @see https://eslint.vuejs.org/rules/no-deprecated-destroyed-lifecycle.html
|
|
410
|
-
*/
|
|
411
|
-
'vue/no-deprecated-destroyed-lifecycle'?: Linter.RuleEntry<[]>;
|
|
412
|
-
/**
|
|
413
|
-
* disallow using deprecated `$listeners` (in Vue.js 3.0.0+)
|
|
414
|
-
* @see https://eslint.vuejs.org/rules/no-deprecated-dollar-listeners-api.html
|
|
415
|
-
*/
|
|
416
|
-
'vue/no-deprecated-dollar-listeners-api'?: Linter.RuleEntry<[]>;
|
|
417
|
-
/**
|
|
418
|
-
* disallow using deprecated `$scopedSlots` (in Vue.js 3.0.0+)
|
|
419
|
-
* @see https://eslint.vuejs.org/rules/no-deprecated-dollar-scopedslots-api.html
|
|
420
|
-
*/
|
|
421
|
-
'vue/no-deprecated-dollar-scopedslots-api'?: Linter.RuleEntry<[]>;
|
|
422
|
-
/**
|
|
423
|
-
* disallow using deprecated events api (in Vue.js 3.0.0+)
|
|
424
|
-
* @see https://eslint.vuejs.org/rules/no-deprecated-events-api.html
|
|
425
|
-
*/
|
|
426
|
-
'vue/no-deprecated-events-api'?: Linter.RuleEntry<[]>;
|
|
427
|
-
/**
|
|
428
|
-
* disallow using deprecated filters syntax (in Vue.js 3.0.0+)
|
|
429
|
-
* @see https://eslint.vuejs.org/rules/no-deprecated-filter.html
|
|
430
|
-
*/
|
|
431
|
-
'vue/no-deprecated-filter'?: Linter.RuleEntry<[]>;
|
|
432
|
-
/**
|
|
433
|
-
* disallow using deprecated the `functional` template (in Vue.js 3.0.0+)
|
|
434
|
-
* @see https://eslint.vuejs.org/rules/no-deprecated-functional-template.html
|
|
435
|
-
*/
|
|
436
|
-
'vue/no-deprecated-functional-template'?: Linter.RuleEntry<[]>;
|
|
437
|
-
/**
|
|
438
|
-
* disallow using deprecated the `is` attribute on HTML elements (in Vue.js 3.0.0+)
|
|
439
|
-
* @see https://eslint.vuejs.org/rules/no-deprecated-html-element-is.html
|
|
440
|
-
*/
|
|
441
|
-
'vue/no-deprecated-html-element-is'?: Linter.RuleEntry<[]>;
|
|
442
|
-
/**
|
|
443
|
-
* disallow using deprecated `inline-template` attribute (in Vue.js 3.0.0+)
|
|
444
|
-
* @see https://eslint.vuejs.org/rules/no-deprecated-inline-template.html
|
|
445
|
-
*/
|
|
446
|
-
'vue/no-deprecated-inline-template'?: Linter.RuleEntry<[]>;
|
|
447
|
-
/**
|
|
448
|
-
* disallow deprecated `model` definition (in Vue.js 3.0.0+)
|
|
449
|
-
* @see https://eslint.vuejs.org/rules/no-deprecated-model-definition.html
|
|
450
|
-
*/
|
|
451
|
-
'vue/no-deprecated-model-definition'?: Linter.RuleEntry<VueNoDeprecatedModelDefinition>;
|
|
452
|
-
/**
|
|
453
|
-
* disallow deprecated `this` access in props default function (in Vue.js 3.0.0+)
|
|
454
|
-
* @see https://eslint.vuejs.org/rules/no-deprecated-props-default-this.html
|
|
455
|
-
*/
|
|
456
|
-
'vue/no-deprecated-props-default-this'?: Linter.RuleEntry<[]>;
|
|
457
|
-
/**
|
|
458
|
-
* disallow using deprecated `tag` property on `RouterLink` (in Vue.js 3.0.0+)
|
|
459
|
-
* @see https://eslint.vuejs.org/rules/no-deprecated-router-link-tag-prop.html
|
|
460
|
-
*/
|
|
461
|
-
'vue/no-deprecated-router-link-tag-prop'?: Linter.RuleEntry<VueNoDeprecatedRouterLinkTagProp>;
|
|
462
|
-
/**
|
|
463
|
-
* disallow deprecated `scope` attribute (in Vue.js 2.5.0+)
|
|
464
|
-
* @see https://eslint.vuejs.org/rules/no-deprecated-scope-attribute.html
|
|
465
|
-
*/
|
|
466
|
-
'vue/no-deprecated-scope-attribute'?: Linter.RuleEntry<[]>;
|
|
467
|
-
/**
|
|
468
|
-
* disallow deprecated `slot` attribute (in Vue.js 2.6.0+)
|
|
469
|
-
* @see https://eslint.vuejs.org/rules/no-deprecated-slot-attribute.html
|
|
470
|
-
*/
|
|
471
|
-
'vue/no-deprecated-slot-attribute'?: Linter.RuleEntry<VueNoDeprecatedSlotAttribute>;
|
|
472
|
-
/**
|
|
473
|
-
* disallow deprecated `slot-scope` attribute (in Vue.js 2.6.0+)
|
|
474
|
-
* @see https://eslint.vuejs.org/rules/no-deprecated-slot-scope-attribute.html
|
|
475
|
-
*/
|
|
476
|
-
'vue/no-deprecated-slot-scope-attribute'?: Linter.RuleEntry<[]>;
|
|
477
|
-
/**
|
|
478
|
-
* disallow use of deprecated `.sync` modifier on `v-bind` directive (in Vue.js 3.0.0+)
|
|
479
|
-
* @see https://eslint.vuejs.org/rules/no-deprecated-v-bind-sync.html
|
|
480
|
-
*/
|
|
481
|
-
'vue/no-deprecated-v-bind-sync'?: Linter.RuleEntry<[]>;
|
|
482
|
-
/**
|
|
483
|
-
* disallow deprecated `v-is` directive (in Vue.js 3.1.0+)
|
|
484
|
-
* @see https://eslint.vuejs.org/rules/no-deprecated-v-is.html
|
|
485
|
-
*/
|
|
486
|
-
'vue/no-deprecated-v-is'?: Linter.RuleEntry<[]>;
|
|
487
|
-
/**
|
|
488
|
-
* disallow using deprecated `.native` modifiers (in Vue.js 3.0.0+)
|
|
489
|
-
* @see https://eslint.vuejs.org/rules/no-deprecated-v-on-native-modifier.html
|
|
490
|
-
*/
|
|
491
|
-
'vue/no-deprecated-v-on-native-modifier'?: Linter.RuleEntry<[]>;
|
|
492
|
-
/**
|
|
493
|
-
* disallow using deprecated number (keycode) modifiers (in Vue.js 3.0.0+)
|
|
494
|
-
* @see https://eslint.vuejs.org/rules/no-deprecated-v-on-number-modifiers.html
|
|
495
|
-
*/
|
|
496
|
-
'vue/no-deprecated-v-on-number-modifiers'?: Linter.RuleEntry<[]>;
|
|
497
|
-
/**
|
|
498
|
-
* disallow using deprecated `Vue.config.keyCodes` (in Vue.js 3.0.0+)
|
|
499
|
-
* @see https://eslint.vuejs.org/rules/no-deprecated-vue-config-keycodes.html
|
|
500
|
-
*/
|
|
501
|
-
'vue/no-deprecated-vue-config-keycodes'?: Linter.RuleEntry<[]>;
|
|
502
|
-
/**
|
|
503
|
-
* disallow duplication of field names
|
|
504
|
-
* @see https://eslint.vuejs.org/rules/no-dupe-keys.html
|
|
505
|
-
*/
|
|
506
|
-
'vue/no-dupe-keys'?: Linter.RuleEntry<VueNoDupeKeys>;
|
|
507
|
-
/**
|
|
508
|
-
* disallow duplicate conditions in `v-if` / `v-else-if` chains
|
|
509
|
-
* @see https://eslint.vuejs.org/rules/no-dupe-v-else-if.html
|
|
510
|
-
*/
|
|
511
|
-
'vue/no-dupe-v-else-if'?: Linter.RuleEntry<[]>;
|
|
512
|
-
/**
|
|
513
|
-
* enforce `inheritAttrs` to be set to `false` when using `v-bind="$attrs"`
|
|
514
|
-
* @see https://eslint.vuejs.org/rules/no-duplicate-attr-inheritance.html
|
|
515
|
-
*/
|
|
516
|
-
'vue/no-duplicate-attr-inheritance'?: Linter.RuleEntry<[]>;
|
|
517
|
-
/**
|
|
518
|
-
* disallow duplication of attributes
|
|
519
|
-
* @see https://eslint.vuejs.org/rules/no-duplicate-attributes.html
|
|
520
|
-
*/
|
|
521
|
-
'vue/no-duplicate-attributes'?: Linter.RuleEntry<VueNoDuplicateAttributes>;
|
|
522
|
-
/**
|
|
523
|
-
* disallow the `<template>` `<script>` `<style>` block to be empty
|
|
524
|
-
* @see https://eslint.vuejs.org/rules/no-empty-component-block.html
|
|
525
|
-
*/
|
|
526
|
-
'vue/no-empty-component-block'?: Linter.RuleEntry<[]>;
|
|
527
|
-
/**
|
|
528
|
-
* Disallow empty destructuring patterns in `<template>`
|
|
529
|
-
* @see https://eslint.vuejs.org/rules/no-empty-pattern.html
|
|
530
|
-
*/
|
|
531
|
-
'vue/no-empty-pattern'?: Linter.RuleEntry<VueNoEmptyPattern>;
|
|
532
|
-
/**
|
|
533
|
-
* disallow `export` in `<script setup>`
|
|
534
|
-
* @see https://eslint.vuejs.org/rules/no-export-in-script-setup.html
|
|
535
|
-
*/
|
|
536
|
-
'vue/no-export-in-script-setup'?: Linter.RuleEntry<[]>;
|
|
537
|
-
/**
|
|
538
|
-
* disallow asynchronously registered `expose`
|
|
539
|
-
* @see https://eslint.vuejs.org/rules/no-expose-after-await.html
|
|
540
|
-
*/
|
|
541
|
-
'vue/no-expose-after-await'?: Linter.RuleEntry<[]>;
|
|
542
|
-
/**
|
|
543
|
-
* Disallow unnecessary parentheses in `<template>`
|
|
544
|
-
* @see https://eslint.vuejs.org/rules/no-extra-parens.html
|
|
545
|
-
*/
|
|
546
|
-
'vue/no-extra-parens'?: Linter.RuleEntry<VueNoExtraParens>;
|
|
547
|
-
/**
|
|
548
|
-
* require valid keys in model option
|
|
549
|
-
* @see https://eslint.vuejs.org/rules/no-invalid-model-keys.html
|
|
550
|
-
* @deprecated
|
|
551
|
-
*/
|
|
552
|
-
'vue/no-invalid-model-keys'?: Linter.RuleEntry<[]>;
|
|
553
|
-
/**
|
|
554
|
-
* disallow irregular whitespace in `.vue` files
|
|
555
|
-
* @see https://eslint.vuejs.org/rules/no-irregular-whitespace.html
|
|
556
|
-
*/
|
|
557
|
-
'vue/no-irregular-whitespace'?: Linter.RuleEntry<VueNoIrregularWhitespace>;
|
|
558
|
-
/**
|
|
559
|
-
* disallow asynchronously registered lifecycle hooks
|
|
560
|
-
* @see https://eslint.vuejs.org/rules/no-lifecycle-after-await.html
|
|
561
|
-
*/
|
|
562
|
-
'vue/no-lifecycle-after-await'?: Linter.RuleEntry<[]>;
|
|
563
|
-
/**
|
|
564
|
-
* disallow unnecessary `<template>`
|
|
565
|
-
* @see https://eslint.vuejs.org/rules/no-lone-template.html
|
|
566
|
-
*/
|
|
567
|
-
'vue/no-lone-template'?: Linter.RuleEntry<VueNoLoneTemplate>;
|
|
568
|
-
/**
|
|
569
|
-
* Disallow literal numbers that lose precision in `<template>`
|
|
570
|
-
* @see https://eslint.vuejs.org/rules/no-loss-of-precision.html
|
|
571
|
-
*/
|
|
572
|
-
'vue/no-loss-of-precision'?: Linter.RuleEntry<[]>;
|
|
573
|
-
/**
|
|
574
|
-
* disallow multiple spaces
|
|
575
|
-
* @see https://eslint.vuejs.org/rules/no-multi-spaces.html
|
|
576
|
-
*/
|
|
577
|
-
'vue/no-multi-spaces'?: Linter.RuleEntry<VueNoMultiSpaces>;
|
|
578
|
-
/**
|
|
579
|
-
* disallow to pass multiple objects into array to class
|
|
580
|
-
* @see https://eslint.vuejs.org/rules/no-multiple-objects-in-class.html
|
|
581
|
-
*/
|
|
582
|
-
'vue/no-multiple-objects-in-class'?: Linter.RuleEntry<[]>;
|
|
583
|
-
/**
|
|
584
|
-
* disallow to pass multiple arguments to scoped slots
|
|
585
|
-
* @see https://eslint.vuejs.org/rules/no-multiple-slot-args.html
|
|
586
|
-
*/
|
|
587
|
-
'vue/no-multiple-slot-args'?: Linter.RuleEntry<[]>;
|
|
588
|
-
/**
|
|
589
|
-
* disallow adding multiple root nodes to the template
|
|
590
|
-
* @see https://eslint.vuejs.org/rules/no-multiple-template-root.html
|
|
591
|
-
*/
|
|
592
|
-
'vue/no-multiple-template-root'?: Linter.RuleEntry<[]>;
|
|
593
|
-
/**
|
|
594
|
-
* disallow mutation of component props
|
|
595
|
-
* @see https://eslint.vuejs.org/rules/no-mutating-props.html
|
|
596
|
-
*/
|
|
597
|
-
'vue/no-mutating-props'?: Linter.RuleEntry<VueNoMutatingProps>;
|
|
598
|
-
/**
|
|
599
|
-
* disallow parsing errors in `<template>`
|
|
600
|
-
* @see https://eslint.vuejs.org/rules/no-parsing-error.html
|
|
601
|
-
*/
|
|
602
|
-
'vue/no-parsing-error'?: Linter.RuleEntry<VueNoParsingError>;
|
|
603
|
-
/**
|
|
604
|
-
* disallow a potential typo in your component property
|
|
605
|
-
* @see https://eslint.vuejs.org/rules/no-potential-component-option-typo.html
|
|
606
|
-
*/
|
|
607
|
-
'vue/no-potential-component-option-typo'?: Linter.RuleEntry<VueNoPotentialComponentOptionTypo>;
|
|
608
|
-
/**
|
|
609
|
-
* disallow use of value wrapped by `ref()` (Composition API) as an operand
|
|
610
|
-
* @see https://eslint.vuejs.org/rules/no-ref-as-operand.html
|
|
611
|
-
*/
|
|
612
|
-
'vue/no-ref-as-operand'?: Linter.RuleEntry<[]>;
|
|
613
|
-
/**
|
|
614
|
-
* disallow usages of ref objects that can lead to loss of reactivity
|
|
615
|
-
* @see https://eslint.vuejs.org/rules/no-ref-object-destructure.html
|
|
616
|
-
* @deprecated
|
|
617
|
-
*/
|
|
618
|
-
'vue/no-ref-object-destructure'?: Linter.RuleEntry<[]>;
|
|
619
|
-
/**
|
|
620
|
-
* disallow usages of ref objects that can lead to loss of reactivity
|
|
621
|
-
* @see https://eslint.vuejs.org/rules/no-ref-object-reactivity-loss.html
|
|
622
|
-
*/
|
|
623
|
-
'vue/no-ref-object-reactivity-loss'?: Linter.RuleEntry<[]>;
|
|
624
|
-
/**
|
|
625
|
-
* enforce props with default values to be optional
|
|
626
|
-
* @see https://eslint.vuejs.org/rules/no-required-prop-with-default.html
|
|
627
|
-
*/
|
|
628
|
-
'vue/no-required-prop-with-default'?: Linter.RuleEntry<VueNoRequiredPropWithDefault>;
|
|
629
|
-
/**
|
|
630
|
-
* disallow the use of reserved names in component definitions
|
|
631
|
-
* @see https://eslint.vuejs.org/rules/no-reserved-component-names.html
|
|
632
|
-
*/
|
|
633
|
-
'vue/no-reserved-component-names'?: Linter.RuleEntry<VueNoReservedComponentNames>;
|
|
634
|
-
/**
|
|
635
|
-
* disallow overwriting reserved keys
|
|
636
|
-
* @see https://eslint.vuejs.org/rules/no-reserved-keys.html
|
|
637
|
-
*/
|
|
638
|
-
'vue/no-reserved-keys'?: Linter.RuleEntry<VueNoReservedKeys>;
|
|
639
|
-
/**
|
|
640
|
-
* disallow reserved names in props
|
|
641
|
-
* @see https://eslint.vuejs.org/rules/no-reserved-props.html
|
|
642
|
-
*/
|
|
643
|
-
'vue/no-reserved-props'?: Linter.RuleEntry<VueNoReservedProps>;
|
|
644
|
-
/**
|
|
645
|
-
* disallow specific block
|
|
646
|
-
* @see https://eslint.vuejs.org/rules/no-restricted-block.html
|
|
647
|
-
*/
|
|
648
|
-
'vue/no-restricted-block'?: Linter.RuleEntry<VueNoRestrictedBlock>;
|
|
649
|
-
/**
|
|
650
|
-
* disallow asynchronously called restricted methods
|
|
651
|
-
* @see https://eslint.vuejs.org/rules/no-restricted-call-after-await.html
|
|
652
|
-
*/
|
|
653
|
-
'vue/no-restricted-call-after-await'?: Linter.RuleEntry<VueNoRestrictedCallAfterAwait>;
|
|
654
|
-
/**
|
|
655
|
-
* disallow specific classes in Vue components
|
|
656
|
-
* @see https://eslint.vuejs.org/rules/no-restricted-class.html
|
|
657
|
-
*/
|
|
658
|
-
'vue/no-restricted-class'?: Linter.RuleEntry<VueNoRestrictedClass>;
|
|
659
|
-
/**
|
|
660
|
-
* disallow specific component names
|
|
661
|
-
* @see https://eslint.vuejs.org/rules/no-restricted-component-names.html
|
|
662
|
-
*/
|
|
663
|
-
'vue/no-restricted-component-names'?: Linter.RuleEntry<VueNoRestrictedComponentNames>;
|
|
664
|
-
/**
|
|
665
|
-
* disallow specific component option
|
|
666
|
-
* @see https://eslint.vuejs.org/rules/no-restricted-component-options.html
|
|
667
|
-
*/
|
|
668
|
-
'vue/no-restricted-component-options'?: Linter.RuleEntry<VueNoRestrictedComponentOptions>;
|
|
669
|
-
/**
|
|
670
|
-
* disallow specific custom event
|
|
671
|
-
* @see https://eslint.vuejs.org/rules/no-restricted-custom-event.html
|
|
672
|
-
*/
|
|
673
|
-
'vue/no-restricted-custom-event'?: Linter.RuleEntry<VueNoRestrictedCustomEvent>;
|
|
674
|
-
/**
|
|
675
|
-
* disallow specific HTML elements
|
|
676
|
-
* @see https://eslint.vuejs.org/rules/no-restricted-html-elements.html
|
|
677
|
-
*/
|
|
678
|
-
'vue/no-restricted-html-elements'?: Linter.RuleEntry<VueNoRestrictedHtmlElements>;
|
|
679
|
-
/**
|
|
680
|
-
* disallow specific props
|
|
681
|
-
* @see https://eslint.vuejs.org/rules/no-restricted-props.html
|
|
682
|
-
*/
|
|
683
|
-
'vue/no-restricted-props'?: Linter.RuleEntry<VueNoRestrictedProps>;
|
|
684
|
-
/**
|
|
685
|
-
* disallow specific attribute
|
|
686
|
-
* @see https://eslint.vuejs.org/rules/no-restricted-static-attribute.html
|
|
687
|
-
*/
|
|
688
|
-
'vue/no-restricted-static-attribute'?: Linter.RuleEntry<VueNoRestrictedStaticAttribute>;
|
|
689
|
-
/**
|
|
690
|
-
* Disallow specified syntax in `<template>`
|
|
691
|
-
* @see https://eslint.vuejs.org/rules/no-restricted-syntax.html
|
|
692
|
-
*/
|
|
693
|
-
'vue/no-restricted-syntax'?: Linter.RuleEntry<VueNoRestrictedSyntax>;
|
|
694
|
-
/**
|
|
695
|
-
* disallow specific argument in `v-bind`
|
|
696
|
-
* @see https://eslint.vuejs.org/rules/no-restricted-v-bind.html
|
|
697
|
-
*/
|
|
698
|
-
'vue/no-restricted-v-bind'?: Linter.RuleEntry<VueNoRestrictedVBind>;
|
|
699
|
-
/**
|
|
700
|
-
* disallow specific argument in `v-on`
|
|
701
|
-
* @see https://eslint.vuejs.org/rules/no-restricted-v-on.html
|
|
702
|
-
*/
|
|
703
|
-
'vue/no-restricted-v-on'?: Linter.RuleEntry<VueNoRestrictedVOn>;
|
|
704
|
-
/**
|
|
705
|
-
* disallow `v-if` directives on root element
|
|
706
|
-
* @see https://eslint.vuejs.org/rules/no-root-v-if.html
|
|
707
|
-
*/
|
|
708
|
-
'vue/no-root-v-if'?: Linter.RuleEntry<[]>;
|
|
709
|
-
/**
|
|
710
|
-
* disallow usages that lose the reactivity of `props` passed to `setup`
|
|
711
|
-
* @see https://eslint.vuejs.org/rules/no-setup-props-destructure.html
|
|
712
|
-
* @deprecated
|
|
713
|
-
*/
|
|
714
|
-
'vue/no-setup-props-destructure'?: Linter.RuleEntry<[]>;
|
|
715
|
-
/**
|
|
716
|
-
* disallow usages that lose the reactivity of `props` passed to `setup`
|
|
717
|
-
* @see https://eslint.vuejs.org/rules/no-setup-props-reactivity-loss.html
|
|
718
|
-
*/
|
|
719
|
-
'vue/no-setup-props-reactivity-loss'?: Linter.RuleEntry<[]>;
|
|
720
|
-
/**
|
|
721
|
-
* enforce component's data property to be a function
|
|
722
|
-
* @see https://eslint.vuejs.org/rules/no-shared-component-data.html
|
|
723
|
-
*/
|
|
724
|
-
'vue/no-shared-component-data'?: Linter.RuleEntry<[]>;
|
|
725
|
-
/**
|
|
726
|
-
* disallow side effects in computed properties
|
|
727
|
-
* @see https://eslint.vuejs.org/rules/no-side-effects-in-computed-properties.html
|
|
728
|
-
*/
|
|
729
|
-
'vue/no-side-effects-in-computed-properties'?: Linter.RuleEntry<[]>;
|
|
730
|
-
/**
|
|
731
|
-
* disallow spaces around equal signs in attribute
|
|
732
|
-
* @see https://eslint.vuejs.org/rules/no-spaces-around-equal-signs-in-attribute.html
|
|
733
|
-
*/
|
|
734
|
-
'vue/no-spaces-around-equal-signs-in-attribute'?: Linter.RuleEntry<[]>;
|
|
735
|
-
/**
|
|
736
|
-
* Disallow sparse arrays in `<template>`
|
|
737
|
-
* @see https://eslint.vuejs.org/rules/no-sparse-arrays.html
|
|
738
|
-
*/
|
|
739
|
-
'vue/no-sparse-arrays'?: Linter.RuleEntry<[]>;
|
|
740
|
-
/**
|
|
741
|
-
* disallow static inline `style` attributes
|
|
742
|
-
* @see https://eslint.vuejs.org/rules/no-static-inline-styles.html
|
|
743
|
-
*/
|
|
744
|
-
'vue/no-static-inline-styles'?: Linter.RuleEntry<VueNoStaticInlineStyles>;
|
|
745
|
-
/**
|
|
746
|
-
* disallow `key` attribute on `<template>`
|
|
747
|
-
* @see https://eslint.vuejs.org/rules/no-template-key.html
|
|
748
|
-
*/
|
|
749
|
-
'vue/no-template-key'?: Linter.RuleEntry<[]>;
|
|
750
|
-
/**
|
|
751
|
-
* disallow variable declarations from shadowing variables declared in the outer scope
|
|
752
|
-
* @see https://eslint.vuejs.org/rules/no-template-shadow.html
|
|
753
|
-
*/
|
|
754
|
-
'vue/no-template-shadow'?: Linter.RuleEntry<VueNoTemplateShadow>;
|
|
755
|
-
/**
|
|
756
|
-
* disallow target="_blank" attribute without rel="noopener noreferrer"
|
|
757
|
-
* @see https://eslint.vuejs.org/rules/no-template-target-blank.html
|
|
758
|
-
*/
|
|
759
|
-
'vue/no-template-target-blank'?: Linter.RuleEntry<VueNoTemplateTargetBlank>;
|
|
760
|
-
/**
|
|
761
|
-
* disallow mustaches in `<textarea>`
|
|
762
|
-
* @see https://eslint.vuejs.org/rules/no-textarea-mustache.html
|
|
763
|
-
*/
|
|
764
|
-
'vue/no-textarea-mustache'?: Linter.RuleEntry<[]>;
|
|
765
|
-
/**
|
|
766
|
-
* disallow `this` usage in a `beforeRouteEnter` method
|
|
767
|
-
* @see https://eslint.vuejs.org/rules/no-this-in-before-route-enter.html
|
|
768
|
-
*/
|
|
769
|
-
'vue/no-this-in-before-route-enter'?: Linter.RuleEntry<[]>;
|
|
770
|
-
/**
|
|
771
|
-
* disallow use of undefined components in `<template>`
|
|
772
|
-
* @see https://eslint.vuejs.org/rules/no-undef-components.html
|
|
773
|
-
*/
|
|
774
|
-
'vue/no-undef-components'?: Linter.RuleEntry<VueNoUndefComponents>;
|
|
775
|
-
/**
|
|
776
|
-
* disallow undefined properties
|
|
777
|
-
* @see https://eslint.vuejs.org/rules/no-undef-properties.html
|
|
778
|
-
*/
|
|
779
|
-
'vue/no-undef-properties'?: Linter.RuleEntry<VueNoUndefProperties>;
|
|
780
|
-
/**
|
|
781
|
-
* disallow unsupported Vue.js syntax on the specified version
|
|
782
|
-
* @see https://eslint.vuejs.org/rules/no-unsupported-features.html
|
|
783
|
-
*/
|
|
784
|
-
'vue/no-unsupported-features'?: Linter.RuleEntry<VueNoUnsupportedFeatures>;
|
|
785
|
-
/**
|
|
786
|
-
* disallow registering components that are not used inside templates
|
|
787
|
-
* @see https://eslint.vuejs.org/rules/no-unused-components.html
|
|
788
|
-
*/
|
|
789
|
-
'vue/no-unused-components'?: Linter.RuleEntry<VueNoUnusedComponents>;
|
|
790
|
-
/**
|
|
791
|
-
* disallow unused emit declarations
|
|
792
|
-
* @see https://eslint.vuejs.org/rules/no-unused-emit-declarations.html
|
|
793
|
-
*/
|
|
794
|
-
'vue/no-unused-emit-declarations'?: Linter.RuleEntry<[]>;
|
|
795
|
-
/**
|
|
796
|
-
* disallow unused properties
|
|
797
|
-
* @see https://eslint.vuejs.org/rules/no-unused-properties.html
|
|
798
|
-
*/
|
|
799
|
-
'vue/no-unused-properties'?: Linter.RuleEntry<VueNoUnusedProperties>;
|
|
800
|
-
/**
|
|
801
|
-
* disallow unused refs
|
|
802
|
-
* @see https://eslint.vuejs.org/rules/no-unused-refs.html
|
|
803
|
-
*/
|
|
804
|
-
'vue/no-unused-refs'?: Linter.RuleEntry<[]>;
|
|
805
|
-
/**
|
|
806
|
-
* disallow unused variable definitions of v-for directives or scope attributes
|
|
807
|
-
* @see https://eslint.vuejs.org/rules/no-unused-vars.html
|
|
808
|
-
*/
|
|
809
|
-
'vue/no-unused-vars'?: Linter.RuleEntry<VueNoUnusedVars>;
|
|
810
|
-
/**
|
|
811
|
-
* disallow use computed property like method
|
|
812
|
-
* @see https://eslint.vuejs.org/rules/no-use-computed-property-like-method.html
|
|
813
|
-
*/
|
|
814
|
-
'vue/no-use-computed-property-like-method'?: Linter.RuleEntry<[]>;
|
|
815
|
-
/**
|
|
816
|
-
* disallow using `v-else-if`/`v-else` on the same element as `v-for`
|
|
817
|
-
* @see https://eslint.vuejs.org/rules/no-use-v-else-with-v-for.html
|
|
818
|
-
*/
|
|
819
|
-
'vue/no-use-v-else-with-v-for'?: Linter.RuleEntry<[]>;
|
|
820
|
-
/**
|
|
821
|
-
* disallow using `v-if` on the same element as `v-for`
|
|
822
|
-
* @see https://eslint.vuejs.org/rules/no-use-v-if-with-v-for.html
|
|
823
|
-
*/
|
|
824
|
-
'vue/no-use-v-if-with-v-for'?: Linter.RuleEntry<VueNoUseVIfWithVFor>;
|
|
825
|
-
/**
|
|
826
|
-
* Disallow unnecessary concatenation of literals or template literals in `<template>`
|
|
827
|
-
* @see https://eslint.vuejs.org/rules/no-useless-concat.html
|
|
828
|
-
*/
|
|
829
|
-
'vue/no-useless-concat'?: Linter.RuleEntry<[]>;
|
|
830
|
-
/**
|
|
831
|
-
* disallow unnecessary mustache interpolations
|
|
832
|
-
* @see https://eslint.vuejs.org/rules/no-useless-mustaches.html
|
|
833
|
-
*/
|
|
834
|
-
'vue/no-useless-mustaches'?: Linter.RuleEntry<VueNoUselessMustaches>;
|
|
835
|
-
/**
|
|
836
|
-
* disallow useless attribute on `<template>`
|
|
837
|
-
* @see https://eslint.vuejs.org/rules/no-useless-template-attributes.html
|
|
838
|
-
*/
|
|
839
|
-
'vue/no-useless-template-attributes'?: Linter.RuleEntry<[]>;
|
|
840
|
-
/**
|
|
841
|
-
* disallow unnecessary `v-bind` directives
|
|
842
|
-
* @see https://eslint.vuejs.org/rules/no-useless-v-bind.html
|
|
843
|
-
*/
|
|
844
|
-
'vue/no-useless-v-bind'?: Linter.RuleEntry<VueNoUselessVBind>;
|
|
845
|
-
/**
|
|
846
|
-
* disallow `key` attribute on `<template v-for>`
|
|
847
|
-
* @see https://eslint.vuejs.org/rules/no-v-for-template-key.html
|
|
848
|
-
*/
|
|
849
|
-
'vue/no-v-for-template-key'?: Linter.RuleEntry<[]>;
|
|
850
|
-
/**
|
|
851
|
-
* disallow key of `<template v-for>` placed on child elements
|
|
852
|
-
* @see https://eslint.vuejs.org/rules/no-v-for-template-key-on-child.html
|
|
853
|
-
*/
|
|
854
|
-
'vue/no-v-for-template-key-on-child'?: Linter.RuleEntry<[]>;
|
|
855
|
-
/**
|
|
856
|
-
* disallow use of v-html to prevent XSS attack
|
|
857
|
-
* @see https://eslint.vuejs.org/rules/no-v-html.html
|
|
858
|
-
*/
|
|
859
|
-
'vue/no-v-html'?: Linter.RuleEntry<[]>;
|
|
860
|
-
/**
|
|
861
|
-
* disallow adding an argument to `v-model` used in custom component
|
|
862
|
-
* @see https://eslint.vuejs.org/rules/no-v-model-argument.html
|
|
863
|
-
*/
|
|
864
|
-
'vue/no-v-model-argument'?: Linter.RuleEntry<[]>;
|
|
865
|
-
/**
|
|
866
|
-
* disallow use of v-text
|
|
867
|
-
* @see https://eslint.vuejs.org/rules/no-v-text.html
|
|
868
|
-
*/
|
|
869
|
-
'vue/no-v-text'?: Linter.RuleEntry<[]>;
|
|
870
|
-
/**
|
|
871
|
-
* disallow v-text / v-html on component
|
|
872
|
-
* @see https://eslint.vuejs.org/rules/no-v-text-v-html-on-component.html
|
|
873
|
-
*/
|
|
874
|
-
'vue/no-v-text-v-html-on-component'?: Linter.RuleEntry<VueNoVTextVHtmlOnComponent>;
|
|
875
|
-
/**
|
|
876
|
-
* disallow asynchronously registered `watch`
|
|
877
|
-
* @see https://eslint.vuejs.org/rules/no-watch-after-await.html
|
|
878
|
-
*/
|
|
879
|
-
'vue/no-watch-after-await'?: Linter.RuleEntry<[]>;
|
|
880
|
-
/**
|
|
881
|
-
* Enforce consistent line breaks after opening and before closing braces in `<template>`
|
|
882
|
-
* @see https://eslint.vuejs.org/rules/object-curly-newline.html
|
|
883
|
-
*/
|
|
884
|
-
'vue/object-curly-newline'?: Linter.RuleEntry<VueObjectCurlyNewline>;
|
|
885
|
-
/**
|
|
886
|
-
* Enforce consistent spacing inside braces in `<template>`
|
|
887
|
-
* @see https://eslint.vuejs.org/rules/object-curly-spacing.html
|
|
888
|
-
*/
|
|
889
|
-
'vue/object-curly-spacing'?: Linter.RuleEntry<VueObjectCurlySpacing>;
|
|
890
|
-
/**
|
|
891
|
-
* Enforce placing object properties on separate lines in `<template>`
|
|
892
|
-
* @see https://eslint.vuejs.org/rules/object-property-newline.html
|
|
893
|
-
*/
|
|
894
|
-
'vue/object-property-newline'?: Linter.RuleEntry<VueObjectPropertyNewline>;
|
|
895
|
-
/**
|
|
896
|
-
* Require or disallow method and property shorthand syntax for object literals in `<template>`
|
|
897
|
-
* @see https://eslint.vuejs.org/rules/object-shorthand.html
|
|
898
|
-
*/
|
|
899
|
-
'vue/object-shorthand'?: Linter.RuleEntry<VueObjectShorthand>;
|
|
900
|
-
/**
|
|
901
|
-
* enforce that each component should be in its own file
|
|
902
|
-
* @see https://eslint.vuejs.org/rules/one-component-per-file.html
|
|
903
|
-
*/
|
|
904
|
-
'vue/one-component-per-file'?: Linter.RuleEntry<[]>;
|
|
905
|
-
/**
|
|
906
|
-
* Enforce consistent linebreak style for operators in `<template>`
|
|
907
|
-
* @see https://eslint.vuejs.org/rules/operator-linebreak.html
|
|
908
|
-
*/
|
|
909
|
-
'vue/operator-linebreak'?: Linter.RuleEntry<VueOperatorLinebreak>;
|
|
910
|
-
/**
|
|
911
|
-
* enforce order of properties in components
|
|
912
|
-
* @see https://eslint.vuejs.org/rules/order-in-components.html
|
|
913
|
-
*/
|
|
914
|
-
'vue/order-in-components'?: Linter.RuleEntry<VueOrderInComponents>;
|
|
915
|
-
/**
|
|
916
|
-
* require or disallow padding lines between blocks
|
|
917
|
-
* @see https://eslint.vuejs.org/rules/padding-line-between-blocks.html
|
|
918
|
-
*/
|
|
919
|
-
'vue/padding-line-between-blocks'?: Linter.RuleEntry<VuePaddingLineBetweenBlocks>;
|
|
920
|
-
/**
|
|
921
|
-
* require or disallow newlines between sibling tags in template
|
|
922
|
-
* @see https://eslint.vuejs.org/rules/padding-line-between-tags.html
|
|
923
|
-
*/
|
|
924
|
-
'vue/padding-line-between-tags'?: Linter.RuleEntry<VuePaddingLineBetweenTags>;
|
|
925
|
-
/**
|
|
926
|
-
* require or disallow padding lines in component definition
|
|
927
|
-
* @see https://eslint.vuejs.org/rules/padding-lines-in-component-definition.html
|
|
928
|
-
*/
|
|
929
|
-
'vue/padding-lines-in-component-definition'?: Linter.RuleEntry<VuePaddingLinesInComponentDefinition>;
|
|
930
|
-
/**
|
|
931
|
-
* enforce use of `defineOptions` instead of default export.
|
|
932
|
-
* @see https://eslint.vuejs.org/rules/prefer-define-options.html
|
|
933
|
-
*/
|
|
934
|
-
'vue/prefer-define-options'?: Linter.RuleEntry<[]>;
|
|
935
|
-
/**
|
|
936
|
-
* enforce import from 'vue' instead of import from '@vue/*'
|
|
937
|
-
* @see https://eslint.vuejs.org/rules/prefer-import-from-vue.html
|
|
938
|
-
*/
|
|
939
|
-
'vue/prefer-import-from-vue'?: Linter.RuleEntry<[]>;
|
|
940
|
-
/**
|
|
941
|
-
* enforce `Boolean` comes first in component prop types
|
|
942
|
-
* @see https://eslint.vuejs.org/rules/prefer-prop-type-boolean-first.html
|
|
943
|
-
*/
|
|
944
|
-
'vue/prefer-prop-type-boolean-first'?: Linter.RuleEntry<[]>;
|
|
945
|
-
/**
|
|
946
|
-
* require static class names in template to be in a separate `class` attribute
|
|
947
|
-
* @see https://eslint.vuejs.org/rules/prefer-separate-static-class.html
|
|
948
|
-
*/
|
|
949
|
-
'vue/prefer-separate-static-class'?: Linter.RuleEntry<[]>;
|
|
950
|
-
/**
|
|
951
|
-
* Require template literals instead of string concatenation in `<template>`
|
|
952
|
-
* @see https://eslint.vuejs.org/rules/prefer-template.html
|
|
953
|
-
*/
|
|
954
|
-
'vue/prefer-template'?: Linter.RuleEntry<[]>;
|
|
955
|
-
/**
|
|
956
|
-
* require shorthand form attribute when `v-bind` value is `true`
|
|
957
|
-
* @see https://eslint.vuejs.org/rules/prefer-true-attribute-shorthand.html
|
|
958
|
-
*/
|
|
959
|
-
'vue/prefer-true-attribute-shorthand'?: Linter.RuleEntry<VuePreferTrueAttributeShorthand>;
|
|
960
|
-
/**
|
|
961
|
-
* enforce specific casing for the Prop name in Vue components
|
|
962
|
-
* @see https://eslint.vuejs.org/rules/prop-name-casing.html
|
|
963
|
-
*/
|
|
964
|
-
'vue/prop-name-casing'?: Linter.RuleEntry<VuePropNameCasing>;
|
|
965
|
-
/**
|
|
966
|
-
* Require quotes around object literal property names in `<template>`
|
|
967
|
-
* @see https://eslint.vuejs.org/rules/quote-props.html
|
|
968
|
-
*/
|
|
969
|
-
'vue/quote-props'?: Linter.RuleEntry<VueQuoteProps>;
|
|
970
|
-
/**
|
|
971
|
-
* require `v-bind:is` of `<component>` elements
|
|
972
|
-
* @see https://eslint.vuejs.org/rules/require-component-is.html
|
|
973
|
-
*/
|
|
974
|
-
'vue/require-component-is'?: Linter.RuleEntry<[]>;
|
|
975
|
-
/**
|
|
976
|
-
* require default value for props
|
|
977
|
-
* @see https://eslint.vuejs.org/rules/require-default-prop.html
|
|
978
|
-
*/
|
|
979
|
-
'vue/require-default-prop'?: Linter.RuleEntry<[]>;
|
|
980
|
-
/**
|
|
981
|
-
* require the component to be directly exported
|
|
982
|
-
* @see https://eslint.vuejs.org/rules/require-direct-export.html
|
|
983
|
-
*/
|
|
984
|
-
'vue/require-direct-export'?: Linter.RuleEntry<VueRequireDirectExport>;
|
|
985
|
-
/**
|
|
986
|
-
* require type definitions in emits
|
|
987
|
-
* @see https://eslint.vuejs.org/rules/require-emit-validator.html
|
|
988
|
-
*/
|
|
989
|
-
'vue/require-emit-validator'?: Linter.RuleEntry<[]>;
|
|
990
|
-
/**
|
|
991
|
-
* require `emits` option with name triggered by `$emit()`
|
|
992
|
-
* @see https://eslint.vuejs.org/rules/require-explicit-emits.html
|
|
993
|
-
*/
|
|
994
|
-
'vue/require-explicit-emits'?: Linter.RuleEntry<VueRequireExplicitEmits>;
|
|
995
|
-
/**
|
|
996
|
-
* require slots to be explicitly defined
|
|
997
|
-
* @see https://eslint.vuejs.org/rules/require-explicit-slots.html
|
|
998
|
-
*/
|
|
999
|
-
'vue/require-explicit-slots'?: Linter.RuleEntry<[]>;
|
|
1000
|
-
/**
|
|
1001
|
-
* require declare public properties using `expose`
|
|
1002
|
-
* @see https://eslint.vuejs.org/rules/require-expose.html
|
|
1003
|
-
*/
|
|
1004
|
-
'vue/require-expose'?: Linter.RuleEntry<[]>;
|
|
1005
|
-
/**
|
|
1006
|
-
* require a certain macro variable name
|
|
1007
|
-
* @see https://eslint.vuejs.org/rules/require-macro-variable-name.html
|
|
1008
|
-
*/
|
|
1009
|
-
'vue/require-macro-variable-name'?: Linter.RuleEntry<VueRequireMacroVariableName>;
|
|
1010
|
-
/**
|
|
1011
|
-
* require a name property in Vue components
|
|
1012
|
-
* @see https://eslint.vuejs.org/rules/require-name-property.html
|
|
1013
|
-
*/
|
|
1014
|
-
'vue/require-name-property'?: Linter.RuleEntry<[]>;
|
|
1015
|
-
/**
|
|
1016
|
-
* require props to have a comment
|
|
1017
|
-
* @see https://eslint.vuejs.org/rules/require-prop-comment.html
|
|
1018
|
-
*/
|
|
1019
|
-
'vue/require-prop-comment'?: Linter.RuleEntry<VueRequirePropComment>;
|
|
1020
|
-
/**
|
|
1021
|
-
* require prop type to be a constructor
|
|
1022
|
-
* @see https://eslint.vuejs.org/rules/require-prop-type-constructor.html
|
|
1023
|
-
*/
|
|
1024
|
-
'vue/require-prop-type-constructor'?: Linter.RuleEntry<[]>;
|
|
1025
|
-
/**
|
|
1026
|
-
* require type definitions in props
|
|
1027
|
-
* @see https://eslint.vuejs.org/rules/require-prop-types.html
|
|
1028
|
-
*/
|
|
1029
|
-
'vue/require-prop-types'?: Linter.RuleEntry<[]>;
|
|
1030
|
-
/**
|
|
1031
|
-
* enforce render function to always return value
|
|
1032
|
-
* @see https://eslint.vuejs.org/rules/require-render-return.html
|
|
1033
|
-
*/
|
|
1034
|
-
'vue/require-render-return'?: Linter.RuleEntry<[]>;
|
|
1035
|
-
/**
|
|
1036
|
-
* enforce properties of `$slots` to be used as a function
|
|
1037
|
-
* @see https://eslint.vuejs.org/rules/require-slots-as-functions.html
|
|
1038
|
-
*/
|
|
1039
|
-
'vue/require-slots-as-functions'?: Linter.RuleEntry<[]>;
|
|
1040
|
-
/**
|
|
1041
|
-
* require control the display of the content inside `<transition>`
|
|
1042
|
-
* @see https://eslint.vuejs.org/rules/require-toggle-inside-transition.html
|
|
1043
|
-
*/
|
|
1044
|
-
'vue/require-toggle-inside-transition'?: Linter.RuleEntry<[]>;
|
|
1045
|
-
/**
|
|
1046
|
-
* enforce adding type declarations to object props
|
|
1047
|
-
* @see https://eslint.vuejs.org/rules/require-typed-object-prop.html
|
|
1048
|
-
*/
|
|
1049
|
-
'vue/require-typed-object-prop'?: Linter.RuleEntry<[]>;
|
|
1050
|
-
/**
|
|
1051
|
-
* require `ref` and `shallowRef` functions to be strongly typed
|
|
1052
|
-
* @see https://eslint.vuejs.org/rules/require-typed-ref.html
|
|
1053
|
-
*/
|
|
1054
|
-
'vue/require-typed-ref'?: Linter.RuleEntry<[]>;
|
|
1055
|
-
/**
|
|
1056
|
-
* require `v-bind:key` with `v-for` directives
|
|
1057
|
-
* @see https://eslint.vuejs.org/rules/require-v-for-key.html
|
|
1058
|
-
*/
|
|
1059
|
-
'vue/require-v-for-key'?: Linter.RuleEntry<[]>;
|
|
1060
|
-
/**
|
|
1061
|
-
* enforce props default values to be valid
|
|
1062
|
-
* @see https://eslint.vuejs.org/rules/require-valid-default-prop.html
|
|
1063
|
-
*/
|
|
1064
|
-
'vue/require-valid-default-prop'?: Linter.RuleEntry<[]>;
|
|
1065
|
-
/**
|
|
1066
|
-
* enforce that a return statement is present in computed property
|
|
1067
|
-
* @see https://eslint.vuejs.org/rules/return-in-computed-property.html
|
|
1068
|
-
*/
|
|
1069
|
-
'vue/return-in-computed-property'?: Linter.RuleEntry<VueReturnInComputedProperty>;
|
|
1070
|
-
/**
|
|
1071
|
-
* enforce that a return statement is present in emits validator
|
|
1072
|
-
* @see https://eslint.vuejs.org/rules/return-in-emits-validator.html
|
|
1073
|
-
*/
|
|
1074
|
-
'vue/return-in-emits-validator'?: Linter.RuleEntry<[]>;
|
|
1075
|
-
/**
|
|
1076
|
-
* enforce consistent indentation in `<script>`
|
|
1077
|
-
* @see https://eslint.vuejs.org/rules/script-indent.html
|
|
1078
|
-
*/
|
|
1079
|
-
'vue/script-indent'?: Linter.RuleEntry<VueScriptIndent>;
|
|
1080
|
-
/**
|
|
1081
|
-
* prevent `<script setup>` variables used in `<template>` to be marked as unused
|
|
1082
|
-
* @see https://eslint.vuejs.org/rules/script-setup-uses-vars.html
|
|
1083
|
-
* @deprecated
|
|
1084
|
-
*/
|
|
1085
|
-
'vue/script-setup-uses-vars'?: Linter.RuleEntry<[]>;
|
|
1086
|
-
/**
|
|
1087
|
-
* require a line break before and after the contents of a singleline element
|
|
1088
|
-
* @see https://eslint.vuejs.org/rules/singleline-html-element-content-newline.html
|
|
1089
|
-
*/
|
|
1090
|
-
'vue/singleline-html-element-content-newline'?: Linter.RuleEntry<VueSinglelineHtmlElementContentNewline>;
|
|
1091
|
-
/**
|
|
1092
|
-
* enforce sort-keys in a manner that is compatible with order-in-components
|
|
1093
|
-
* @see https://eslint.vuejs.org/rules/sort-keys.html
|
|
1094
|
-
*/
|
|
1095
|
-
'vue/sort-keys'?: Linter.RuleEntry<VueSortKeys>;
|
|
1096
|
-
/**
|
|
1097
|
-
* Enforce consistent spacing inside parentheses in `<template>`
|
|
1098
|
-
* @see https://eslint.vuejs.org/rules/space-in-parens.html
|
|
1099
|
-
*/
|
|
1100
|
-
'vue/space-in-parens'?: Linter.RuleEntry<VueSpaceInParens>;
|
|
1101
|
-
/**
|
|
1102
|
-
* Require spacing around infix operators in `<template>`
|
|
1103
|
-
* @see https://eslint.vuejs.org/rules/space-infix-ops.html
|
|
1104
|
-
*/
|
|
1105
|
-
'vue/space-infix-ops'?: Linter.RuleEntry<VueSpaceInfixOps>;
|
|
1106
|
-
/**
|
|
1107
|
-
* Enforce consistent spacing before or after unary operators in `<template>`
|
|
1108
|
-
* @see https://eslint.vuejs.org/rules/space-unary-ops.html
|
|
1109
|
-
*/
|
|
1110
|
-
'vue/space-unary-ops'?: Linter.RuleEntry<VueSpaceUnaryOps>;
|
|
1111
|
-
/**
|
|
1112
|
-
* enforce static class names order
|
|
1113
|
-
* @see https://eslint.vuejs.org/rules/static-class-names-order.html
|
|
1114
|
-
*/
|
|
1115
|
-
'vue/static-class-names-order'?: Linter.RuleEntry<[]>;
|
|
1116
|
-
/**
|
|
1117
|
-
* Require or disallow spacing around embedded expressions of template strings in `<template>`
|
|
1118
|
-
* @see https://eslint.vuejs.org/rules/template-curly-spacing.html
|
|
1119
|
-
*/
|
|
1120
|
-
'vue/template-curly-spacing'?: Linter.RuleEntry<VueTemplateCurlySpacing>;
|
|
1121
|
-
/**
|
|
1122
|
-
* disallow usage of `this` in template
|
|
1123
|
-
* @see https://eslint.vuejs.org/rules/this-in-template.html
|
|
1124
|
-
*/
|
|
1125
|
-
'vue/this-in-template'?: Linter.RuleEntry<VueThisInTemplate>;
|
|
1126
|
-
/**
|
|
1127
|
-
* enforce usage of `exact` modifier on `v-on`
|
|
1128
|
-
* @see https://eslint.vuejs.org/rules/use-v-on-exact.html
|
|
1129
|
-
*/
|
|
1130
|
-
'vue/use-v-on-exact'?: Linter.RuleEntry<[]>;
|
|
1131
|
-
/**
|
|
1132
|
-
* enforce `v-bind` directive style
|
|
1133
|
-
* @see https://eslint.vuejs.org/rules/v-bind-style.html
|
|
1134
|
-
*/
|
|
1135
|
-
'vue/v-bind-style'?: Linter.RuleEntry<VueVBindStyle>;
|
|
1136
|
-
/**
|
|
1137
|
-
* enforce `v-for` directive's delimiter style
|
|
1138
|
-
* @see https://eslint.vuejs.org/rules/v-for-delimiter-style.html
|
|
1139
|
-
*/
|
|
1140
|
-
'vue/v-for-delimiter-style'?: Linter.RuleEntry<VueVForDelimiterStyle>;
|
|
1141
|
-
/**
|
|
1142
|
-
* require key attribute for conditionally rendered repeated components
|
|
1143
|
-
* @see https://eslint.vuejs.org/rules/v-if-else-key.html
|
|
1144
|
-
*/
|
|
1145
|
-
'vue/v-if-else-key'?: Linter.RuleEntry<[]>;
|
|
1146
|
-
/**
|
|
1147
|
-
* enforce v-on event naming style on custom components in template
|
|
1148
|
-
* @see https://eslint.vuejs.org/rules/v-on-event-hyphenation.html
|
|
1149
|
-
*/
|
|
1150
|
-
'vue/v-on-event-hyphenation'?: Linter.RuleEntry<VueVOnEventHyphenation>;
|
|
1151
|
-
/**
|
|
1152
|
-
* enforce or forbid parentheses after method calls without arguments in `v-on` directives
|
|
1153
|
-
* @see https://eslint.vuejs.org/rules/v-on-function-call.html
|
|
1154
|
-
* @deprecated
|
|
1155
|
-
*/
|
|
1156
|
-
'vue/v-on-function-call'?: Linter.RuleEntry<VueVOnFunctionCall>;
|
|
1157
|
-
/**
|
|
1158
|
-
* enforce writing style for handlers in `v-on` directives
|
|
1159
|
-
* @see https://eslint.vuejs.org/rules/v-on-handler-style.html
|
|
1160
|
-
*/
|
|
1161
|
-
'vue/v-on-handler-style'?: Linter.RuleEntry<VueVOnHandlerStyle>;
|
|
1162
|
-
/**
|
|
1163
|
-
* enforce `v-on` directive style
|
|
1164
|
-
* @see https://eslint.vuejs.org/rules/v-on-style.html
|
|
1165
|
-
*/
|
|
1166
|
-
'vue/v-on-style'?: Linter.RuleEntry<VueVOnStyle>;
|
|
1167
|
-
/**
|
|
1168
|
-
* enforce `v-slot` directive style
|
|
1169
|
-
* @see https://eslint.vuejs.org/rules/v-slot-style.html
|
|
1170
|
-
*/
|
|
1171
|
-
'vue/v-slot-style'?: Linter.RuleEntry<VueVSlotStyle>;
|
|
1172
|
-
/**
|
|
1173
|
-
* require valid attribute names
|
|
1174
|
-
* @see https://eslint.vuejs.org/rules/valid-attribute-name.html
|
|
1175
|
-
*/
|
|
1176
|
-
'vue/valid-attribute-name'?: Linter.RuleEntry<[]>;
|
|
1177
|
-
/**
|
|
1178
|
-
* enforce valid `defineEmits` compiler macro
|
|
1179
|
-
* @see https://eslint.vuejs.org/rules/valid-define-emits.html
|
|
1180
|
-
*/
|
|
1181
|
-
'vue/valid-define-emits'?: Linter.RuleEntry<[]>;
|
|
1182
|
-
/**
|
|
1183
|
-
* enforce valid `defineOptions` compiler macro
|
|
1184
|
-
* @see https://eslint.vuejs.org/rules/valid-define-options.html
|
|
1185
|
-
*/
|
|
1186
|
-
'vue/valid-define-options'?: Linter.RuleEntry<[]>;
|
|
1187
|
-
/**
|
|
1188
|
-
* enforce valid `defineProps` compiler macro
|
|
1189
|
-
* @see https://eslint.vuejs.org/rules/valid-define-props.html
|
|
1190
|
-
*/
|
|
1191
|
-
'vue/valid-define-props'?: Linter.RuleEntry<[]>;
|
|
1192
|
-
/**
|
|
1193
|
-
* require valid keys in model option
|
|
1194
|
-
* @see https://eslint.vuejs.org/rules/valid-model-definition.html
|
|
1195
|
-
*/
|
|
1196
|
-
'vue/valid-model-definition'?: Linter.RuleEntry<[]>;
|
|
1197
|
-
/**
|
|
1198
|
-
* enforce valid `nextTick` function calls
|
|
1199
|
-
* @see https://eslint.vuejs.org/rules/valid-next-tick.html
|
|
1200
|
-
*/
|
|
1201
|
-
'vue/valid-next-tick'?: Linter.RuleEntry<[]>;
|
|
1202
|
-
/**
|
|
1203
|
-
* enforce valid template root
|
|
1204
|
-
* @see https://eslint.vuejs.org/rules/valid-template-root.html
|
|
1205
|
-
*/
|
|
1206
|
-
'vue/valid-template-root'?: Linter.RuleEntry<[]>;
|
|
1207
|
-
/**
|
|
1208
|
-
* enforce valid `v-bind` directives
|
|
1209
|
-
* @see https://eslint.vuejs.org/rules/valid-v-bind.html
|
|
1210
|
-
*/
|
|
1211
|
-
'vue/valid-v-bind'?: Linter.RuleEntry<[]>;
|
|
1212
|
-
/**
|
|
1213
|
-
* enforce valid `.sync` modifier on `v-bind` directives
|
|
1214
|
-
* @see https://eslint.vuejs.org/rules/valid-v-bind-sync.html
|
|
1215
|
-
*/
|
|
1216
|
-
'vue/valid-v-bind-sync'?: Linter.RuleEntry<[]>;
|
|
1217
|
-
/**
|
|
1218
|
-
* enforce valid `v-cloak` directives
|
|
1219
|
-
* @see https://eslint.vuejs.org/rules/valid-v-cloak.html
|
|
1220
|
-
*/
|
|
1221
|
-
'vue/valid-v-cloak'?: Linter.RuleEntry<[]>;
|
|
1222
|
-
/**
|
|
1223
|
-
* enforce valid `v-else` directives
|
|
1224
|
-
* @see https://eslint.vuejs.org/rules/valid-v-else.html
|
|
1225
|
-
*/
|
|
1226
|
-
'vue/valid-v-else'?: Linter.RuleEntry<[]>;
|
|
1227
|
-
/**
|
|
1228
|
-
* enforce valid `v-else-if` directives
|
|
1229
|
-
* @see https://eslint.vuejs.org/rules/valid-v-else-if.html
|
|
1230
|
-
*/
|
|
1231
|
-
'vue/valid-v-else-if'?: Linter.RuleEntry<[]>;
|
|
1232
|
-
/**
|
|
1233
|
-
* enforce valid `v-for` directives
|
|
1234
|
-
* @see https://eslint.vuejs.org/rules/valid-v-for.html
|
|
1235
|
-
*/
|
|
1236
|
-
'vue/valid-v-for'?: Linter.RuleEntry<[]>;
|
|
1237
|
-
/**
|
|
1238
|
-
* enforce valid `v-html` directives
|
|
1239
|
-
* @see https://eslint.vuejs.org/rules/valid-v-html.html
|
|
1240
|
-
*/
|
|
1241
|
-
'vue/valid-v-html'?: Linter.RuleEntry<[]>;
|
|
1242
|
-
/**
|
|
1243
|
-
* enforce valid `v-if` directives
|
|
1244
|
-
* @see https://eslint.vuejs.org/rules/valid-v-if.html
|
|
1245
|
-
*/
|
|
1246
|
-
'vue/valid-v-if'?: Linter.RuleEntry<[]>;
|
|
1247
|
-
/**
|
|
1248
|
-
* enforce valid `v-is` directives
|
|
1249
|
-
* @see https://eslint.vuejs.org/rules/valid-v-is.html
|
|
1250
|
-
*/
|
|
1251
|
-
'vue/valid-v-is'?: Linter.RuleEntry<[]>;
|
|
1252
|
-
/**
|
|
1253
|
-
* enforce valid `v-memo` directives
|
|
1254
|
-
* @see https://eslint.vuejs.org/rules/valid-v-memo.html
|
|
1255
|
-
*/
|
|
1256
|
-
'vue/valid-v-memo'?: Linter.RuleEntry<[]>;
|
|
1257
|
-
/**
|
|
1258
|
-
* enforce valid `v-model` directives
|
|
1259
|
-
* @see https://eslint.vuejs.org/rules/valid-v-model.html
|
|
1260
|
-
*/
|
|
1261
|
-
'vue/valid-v-model'?: Linter.RuleEntry<[]>;
|
|
1262
|
-
/**
|
|
1263
|
-
* enforce valid `v-on` directives
|
|
1264
|
-
* @see https://eslint.vuejs.org/rules/valid-v-on.html
|
|
1265
|
-
*/
|
|
1266
|
-
'vue/valid-v-on'?: Linter.RuleEntry<VueValidVOn>;
|
|
1267
|
-
/**
|
|
1268
|
-
* enforce valid `v-once` directives
|
|
1269
|
-
* @see https://eslint.vuejs.org/rules/valid-v-once.html
|
|
1270
|
-
*/
|
|
1271
|
-
'vue/valid-v-once'?: Linter.RuleEntry<[]>;
|
|
1272
|
-
/**
|
|
1273
|
-
* enforce valid `v-pre` directives
|
|
1274
|
-
* @see https://eslint.vuejs.org/rules/valid-v-pre.html
|
|
1275
|
-
*/
|
|
1276
|
-
'vue/valid-v-pre'?: Linter.RuleEntry<[]>;
|
|
1277
|
-
/**
|
|
1278
|
-
* enforce valid `v-show` directives
|
|
1279
|
-
* @see https://eslint.vuejs.org/rules/valid-v-show.html
|
|
1280
|
-
*/
|
|
1281
|
-
'vue/valid-v-show'?: Linter.RuleEntry<[]>;
|
|
1282
|
-
/**
|
|
1283
|
-
* enforce valid `v-slot` directives
|
|
1284
|
-
* @see https://eslint.vuejs.org/rules/valid-v-slot.html
|
|
1285
|
-
*/
|
|
1286
|
-
'vue/valid-v-slot'?: Linter.RuleEntry<VueValidVSlot>;
|
|
1287
|
-
/**
|
|
1288
|
-
* enforce valid `v-text` directives
|
|
1289
|
-
* @see https://eslint.vuejs.org/rules/valid-v-text.html
|
|
1290
|
-
*/
|
|
1291
|
-
'vue/valid-v-text'?: Linter.RuleEntry<[]>;
|
|
1292
|
-
/**
|
|
1293
|
-
* @see https://vue-a11y.github.io/eslint-plugin-vuejs-accessibility/rules/alt-text.html
|
|
1294
|
-
*/
|
|
1295
|
-
'vuejs-accessibility/alt-text'?: Linter.RuleEntry<VuejsAccessibilityAltText>;
|
|
1296
|
-
/**
|
|
1297
|
-
* @see https://vue-a11y.github.io/eslint-plugin-vuejs-accessibility/rules/anchor-has-content.html
|
|
1298
|
-
*/
|
|
1299
|
-
'vuejs-accessibility/anchor-has-content'?: Linter.RuleEntry<VuejsAccessibilityAnchorHasContent>;
|
|
1300
|
-
/**
|
|
1301
|
-
* @see https://vue-a11y.github.io/eslint-plugin-vuejs-accessibility/rules/aria-props.html
|
|
1302
|
-
*/
|
|
1303
|
-
'vuejs-accessibility/aria-props'?: Linter.RuleEntry<[]>;
|
|
1304
|
-
/**
|
|
1305
|
-
* @see https://vue-a11y.github.io/eslint-plugin-vuejs-accessibility/rules/aria-role.html
|
|
1306
|
-
*/
|
|
1307
|
-
'vuejs-accessibility/aria-role'?: Linter.RuleEntry<VuejsAccessibilityAriaRole>;
|
|
1308
|
-
/**
|
|
1309
|
-
* @see https://vue-a11y.github.io/eslint-plugin-vuejs-accessibility/rules/aria-unsupported-elements.html
|
|
1310
|
-
*/
|
|
1311
|
-
'vuejs-accessibility/aria-unsupported-elements'?: Linter.RuleEntry<[]>;
|
|
1312
|
-
/**
|
|
1313
|
-
* @see https://vue-a11y.github.io/eslint-plugin-vuejs-accessibility/rules/click-events-have-key-events.html
|
|
1314
|
-
*/
|
|
1315
|
-
'vuejs-accessibility/click-events-have-key-events'?: Linter.RuleEntry<[]>;
|
|
1316
|
-
/**
|
|
1317
|
-
* @see https://vue-a11y.github.io/eslint-plugin-vuejs-accessibility/rules/form-control-has-label.html
|
|
1318
|
-
*/
|
|
1319
|
-
'vuejs-accessibility/form-control-has-label'?: Linter.RuleEntry<VuejsAccessibilityFormControlHasLabel>;
|
|
1320
|
-
/**
|
|
1321
|
-
* @see https://vue-a11y.github.io/eslint-plugin-vuejs-accessibility/rules/heading-has-content.html
|
|
1322
|
-
*/
|
|
1323
|
-
'vuejs-accessibility/heading-has-content'?: Linter.RuleEntry<VuejsAccessibilityHeadingHasContent>;
|
|
1324
|
-
/**
|
|
1325
|
-
* @see https://vue-a11y.github.io/eslint-plugin-vuejs-accessibility/rules/iframe-has-title.html
|
|
1326
|
-
*/
|
|
1327
|
-
'vuejs-accessibility/iframe-has-title'?: Linter.RuleEntry<[]>;
|
|
1328
|
-
/**
|
|
1329
|
-
* @see https://vue-a11y.github.io/eslint-plugin-vuejs-accessibility/rules/interactive-supports-focus.html
|
|
1330
|
-
*/
|
|
1331
|
-
'vuejs-accessibility/interactive-supports-focus'?: Linter.RuleEntry<VuejsAccessibilityInteractiveSupportsFocus>;
|
|
1332
|
-
/**
|
|
1333
|
-
* @see https://vue-a11y.github.io/eslint-plugin-vuejs-accessibility/rules/label-has-for.html
|
|
1334
|
-
*/
|
|
1335
|
-
'vuejs-accessibility/label-has-for'?: Linter.RuleEntry<VuejsAccessibilityLabelHasFor>;
|
|
1336
|
-
/**
|
|
1337
|
-
* @see https://vue-a11y.github.io/eslint-plugin-vuejs-accessibility/rules/media-has-caption.html
|
|
1338
|
-
*/
|
|
1339
|
-
'vuejs-accessibility/media-has-caption'?: Linter.RuleEntry<VuejsAccessibilityMediaHasCaption>;
|
|
1340
|
-
/**
|
|
1341
|
-
* @see https://vue-a11y.github.io/eslint-plugin-vuejs-accessibility/rules/mouse-events-have-key-events.html
|
|
1342
|
-
*/
|
|
1343
|
-
'vuejs-accessibility/mouse-events-have-key-events'?: Linter.RuleEntry<[]>;
|
|
1344
|
-
/**
|
|
1345
|
-
* @see https://vue-a11y.github.io/eslint-plugin-vuejs-accessibility/rules/no-access-key.html
|
|
1346
|
-
*/
|
|
1347
|
-
'vuejs-accessibility/no-access-key'?: Linter.RuleEntry<[]>;
|
|
1348
|
-
/**
|
|
1349
|
-
* @see https://vue-a11y.github.io/eslint-plugin-vuejs-accessibility/rules/no-aria-hidden-on-focusable.html
|
|
1350
|
-
*/
|
|
1351
|
-
'vuejs-accessibility/no-aria-hidden-on-focusable'?: Linter.RuleEntry<[]>;
|
|
1352
|
-
/**
|
|
1353
|
-
* @see https://vue-a11y.github.io/eslint-plugin-vuejs-accessibility/rules/no-autofocus.html
|
|
1354
|
-
*/
|
|
1355
|
-
'vuejs-accessibility/no-autofocus'?: Linter.RuleEntry<VuejsAccessibilityNoAutofocus>;
|
|
1356
|
-
/**
|
|
1357
|
-
* @see https://vue-a11y.github.io/eslint-plugin-vuejs-accessibility/rules/no-distracting-elements.html
|
|
1358
|
-
*/
|
|
1359
|
-
'vuejs-accessibility/no-distracting-elements'?: Linter.RuleEntry<VuejsAccessibilityNoDistractingElements>;
|
|
1360
|
-
/**
|
|
1361
|
-
* @see https://vue-a11y.github.io/eslint-plugin-vuejs-accessibility/rules/no-onchange.html
|
|
1362
|
-
* @deprecated
|
|
1363
|
-
*/
|
|
1364
|
-
'vuejs-accessibility/no-onchange'?: Linter.RuleEntry<[]>;
|
|
1365
|
-
/**
|
|
1366
|
-
* @see https://vue-a11y.github.io/eslint-plugin-vuejs-accessibility/rules/no-redundant-roles.html
|
|
1367
|
-
*/
|
|
1368
|
-
'vuejs-accessibility/no-redundant-roles'?: Linter.RuleEntry<VuejsAccessibilityNoRedundantRoles>;
|
|
1369
|
-
/**
|
|
1370
|
-
* @see https://vue-a11y.github.io/eslint-plugin-vuejs-accessibility/rules/no-role-presentation-on-focusable.html
|
|
1371
|
-
*/
|
|
1372
|
-
'vuejs-accessibility/no-role-presentation-on-focusable'?: Linter.RuleEntry<[]>;
|
|
1373
|
-
/**
|
|
1374
|
-
* @see https://vue-a11y.github.io/eslint-plugin-vuejs-accessibility/rules/no-static-element-interactions.html
|
|
1375
|
-
*/
|
|
1376
|
-
'vuejs-accessibility/no-static-element-interactions'?: Linter.RuleEntry<[]>;
|
|
1377
|
-
/**
|
|
1378
|
-
* @see https://vue-a11y.github.io/eslint-plugin-vuejs-accessibility/rules/role-has-required-aria-props.html
|
|
1379
|
-
*/
|
|
1380
|
-
'vuejs-accessibility/role-has-required-aria-props'?: Linter.RuleEntry<[]>;
|
|
1381
|
-
/**
|
|
1382
|
-
* @see https://vue-a11y.github.io/eslint-plugin-vuejs-accessibility/rules/tabindex-no-positive.html
|
|
1383
|
-
*/
|
|
1384
|
-
'vuejs-accessibility/tabindex-no-positive'?: Linter.RuleEntry<[]>;
|
|
1385
|
-
}
|
|
1386
|
-
type VueScopedCssEnforceStyleType = [] | [
|
|
1387
|
-
{
|
|
1388
|
-
allows?: [("plain" | "scoped" | "module"), ...(("plain" | "scoped" | "module"))[]];
|
|
1389
|
-
}
|
|
1390
|
-
];
|
|
1391
|
-
type VueScopedCssNoUnusedKeyframes = [] | [
|
|
1392
|
-
{
|
|
1393
|
-
checkUnscoped?: boolean;
|
|
1394
|
-
}
|
|
1395
|
-
];
|
|
1396
|
-
type VueScopedCssNoUnusedSelector = [] | [
|
|
1397
|
-
{
|
|
1398
|
-
ignoreBEMModifier?: boolean;
|
|
1399
|
-
captureClassesFromDoc?: [] | [string];
|
|
1400
|
-
checkUnscoped?: boolean;
|
|
1401
|
-
}
|
|
1402
|
-
];
|
|
1403
|
-
type VueScopedCssRequireScoped = [] | [("always" | "never")];
|
|
1404
|
-
type VueScopedCssRequireSelectorUsedInside = [] | [
|
|
1405
|
-
{
|
|
1406
|
-
ignoreBEMModifier?: boolean;
|
|
1407
|
-
captureClassesFromDoc?: [] | [string];
|
|
1408
|
-
checkUnscoped?: boolean;
|
|
1409
|
-
}
|
|
1410
|
-
];
|
|
1411
|
-
type VueScopedCssVDeepPseudoStyle = [] | [(":deep" | "::v-deep")];
|
|
1412
|
-
type VueScopedCssVGlobalPseudoStyle = [] | [(":global" | "::v-global")];
|
|
1413
|
-
type VueScopedCssVSlottedPseudoStyle = [] | [(":slotted" | "::v-slotted")];
|
|
1414
|
-
type VueArrayBracketNewline = [] | [
|
|
1415
|
-
(("always" | "never" | "consistent") | {
|
|
1416
|
-
multiline?: boolean;
|
|
1417
|
-
minItems?: (number | null);
|
|
1418
|
-
})
|
|
1419
|
-
];
|
|
1420
|
-
type VueArrayBracketSpacing = [] | [("always" | "never")] | [
|
|
1421
|
-
("always" | "never"),
|
|
1422
|
-
{
|
|
1423
|
-
singleValue?: boolean;
|
|
1424
|
-
objectsInArrays?: boolean;
|
|
1425
|
-
arraysInArrays?: boolean;
|
|
1426
|
-
}
|
|
1427
|
-
];
|
|
1428
|
-
type VueArrayElementNewline = [] | [
|
|
1429
|
-
(_VueArrayElementNewlineBasicConfig | {
|
|
1430
|
-
ArrayExpression?: _VueArrayElementNewlineBasicConfig;
|
|
1431
|
-
ArrayPattern?: _VueArrayElementNewlineBasicConfig;
|
|
1432
|
-
})
|
|
1433
|
-
];
|
|
1434
|
-
type _VueArrayElementNewlineBasicConfig = (("always" | "never" | "consistent") | {
|
|
1435
|
-
multiline?: boolean;
|
|
1436
|
-
minItems?: (number | null);
|
|
1437
|
-
});
|
|
1438
|
-
type VueArrowSpacing = [] | [
|
|
1439
|
-
{
|
|
1440
|
-
before?: boolean;
|
|
1441
|
-
after?: boolean;
|
|
1442
|
-
}
|
|
1443
|
-
];
|
|
1444
|
-
type VueAttributeHyphenation = [] | [("always" | "never")] | [
|
|
1445
|
-
("always" | "never"),
|
|
1446
|
-
{
|
|
1447
|
-
ignore?: (string & {
|
|
1448
|
-
[k: string]: unknown | undefined;
|
|
1449
|
-
} & {
|
|
1450
|
-
[k: string]: unknown | undefined;
|
|
1451
|
-
})[];
|
|
1452
|
-
}
|
|
1453
|
-
];
|
|
1454
|
-
type VueAttributesOrder = [] | [
|
|
1455
|
-
{
|
|
1456
|
-
order?: (("DEFINITION" | "LIST_RENDERING" | "CONDITIONALS" | "RENDER_MODIFIERS" | "GLOBAL" | "UNIQUE" | "SLOT" | "TWO_WAY_BINDING" | "OTHER_DIRECTIVES" | "OTHER_ATTR" | "ATTR_STATIC" | "ATTR_DYNAMIC" | "ATTR_SHORTHAND_BOOL" | "EVENTS" | "CONTENT") | ("DEFINITION" | "LIST_RENDERING" | "CONDITIONALS" | "RENDER_MODIFIERS" | "GLOBAL" | "UNIQUE" | "SLOT" | "TWO_WAY_BINDING" | "OTHER_DIRECTIVES" | "OTHER_ATTR" | "ATTR_STATIC" | "ATTR_DYNAMIC" | "ATTR_SHORTHAND_BOOL" | "EVENTS" | "CONTENT")[])[];
|
|
1457
|
-
alphabetical?: boolean;
|
|
1458
|
-
}
|
|
1459
|
-
];
|
|
1460
|
-
type VueBlockLang = [] | [
|
|
1461
|
-
{
|
|
1462
|
-
[k: string]: {
|
|
1463
|
-
lang?: (string | string[]);
|
|
1464
|
-
allowNoLang?: boolean;
|
|
1465
|
-
};
|
|
1466
|
-
}
|
|
1467
|
-
];
|
|
1468
|
-
type VueBlockOrder = [] | [
|
|
1469
|
-
{
|
|
1470
|
-
order?: (string | string[])[];
|
|
1471
|
-
}
|
|
1472
|
-
];
|
|
1473
|
-
type VueBlockSpacing = [] | [("always" | "never")];
|
|
1474
|
-
type VueBlockTagNewline = [] | [
|
|
1475
|
-
{
|
|
1476
|
-
singleline?: ("always" | "never" | "consistent" | "ignore");
|
|
1477
|
-
multiline?: ("always" | "never" | "consistent" | "ignore");
|
|
1478
|
-
maxEmptyLines?: number;
|
|
1479
|
-
blocks?: {
|
|
1480
|
-
[k: string]: {
|
|
1481
|
-
singleline?: ("always" | "never" | "consistent" | "ignore");
|
|
1482
|
-
multiline?: ("always" | "never" | "consistent" | "ignore");
|
|
1483
|
-
maxEmptyLines?: number;
|
|
1484
|
-
};
|
|
1485
|
-
};
|
|
1486
|
-
}
|
|
1487
|
-
];
|
|
1488
|
-
type VueBraceStyle = [] | [("1tbs" | "stroustrup" | "allman")] | [
|
|
1489
|
-
("1tbs" | "stroustrup" | "allman"),
|
|
1490
|
-
{
|
|
1491
|
-
allowSingleLine?: boolean;
|
|
1492
|
-
}
|
|
1493
|
-
];
|
|
1494
|
-
type VueCamelcase = [] | [
|
|
1495
|
-
{
|
|
1496
|
-
ignoreDestructuring?: boolean;
|
|
1497
|
-
ignoreImports?: boolean;
|
|
1498
|
-
ignoreGlobals?: boolean;
|
|
1499
|
-
properties?: ("always" | "never");
|
|
1500
|
-
allow?: string[];
|
|
1501
|
-
}
|
|
1502
|
-
];
|
|
1503
|
-
type VueCommaDangle = [] | [
|
|
1504
|
-
(_VueCommaDangleValue | {
|
|
1505
|
-
arrays?: _VueCommaDangleValueWithIgnore;
|
|
1506
|
-
objects?: _VueCommaDangleValueWithIgnore;
|
|
1507
|
-
imports?: _VueCommaDangleValueWithIgnore;
|
|
1508
|
-
exports?: _VueCommaDangleValueWithIgnore;
|
|
1509
|
-
functions?: _VueCommaDangleValueWithIgnore;
|
|
1510
|
-
})
|
|
1511
|
-
];
|
|
1512
|
-
type _VueCommaDangleValue = ("always-multiline" | "always" | "never" | "only-multiline");
|
|
1513
|
-
type _VueCommaDangleValueWithIgnore = ("always-multiline" | "always" | "ignore" | "never" | "only-multiline");
|
|
1514
|
-
type VueCommaSpacing = [] | [
|
|
1515
|
-
{
|
|
1516
|
-
before?: boolean;
|
|
1517
|
-
after?: boolean;
|
|
1518
|
-
}
|
|
1519
|
-
];
|
|
1520
|
-
type VueCommaStyle = [] | [("first" | "last")] | [
|
|
1521
|
-
("first" | "last"),
|
|
1522
|
-
{
|
|
1523
|
-
exceptions?: {
|
|
1524
|
-
[k: string]: boolean | undefined;
|
|
1525
|
-
};
|
|
1526
|
-
}
|
|
1527
|
-
];
|
|
1528
|
-
type VueCommentDirective = [] | [
|
|
1529
|
-
{
|
|
1530
|
-
reportUnusedDisableDirectives?: boolean;
|
|
1531
|
-
}
|
|
1532
|
-
];
|
|
1533
|
-
type VueComponentApiStyle = [] | [[("script-setup" | "composition" | "composition-vue2" | "options"), ...(("script-setup" | "composition" | "composition-vue2" | "options"))[]]];
|
|
1534
|
-
type VueComponentDefinitionNameCasing = [] | [("PascalCase" | "kebab-case")];
|
|
1535
|
-
type VueComponentNameInTemplateCasing = [] | [("PascalCase" | "kebab-case")] | [
|
|
1536
|
-
("PascalCase" | "kebab-case"),
|
|
1537
|
-
{
|
|
1538
|
-
globals?: string[];
|
|
1539
|
-
ignores?: string[];
|
|
1540
|
-
registeredComponentsOnly?: boolean;
|
|
1541
|
-
}
|
|
1542
|
-
];
|
|
1543
|
-
type VueComponentOptionsNameCasing = [] | [("camelCase" | "kebab-case" | "PascalCase")];
|
|
1544
|
-
type VueComponentTagsOrder = [] | [
|
|
1545
|
-
{
|
|
1546
|
-
order?: (string | string[])[];
|
|
1547
|
-
}
|
|
1548
|
-
];
|
|
1549
|
-
type VueCustomEventNameCasing = ([] | [("kebab-case" | "camelCase")] | [
|
|
1550
|
-
("kebab-case" | "camelCase"),
|
|
1551
|
-
{
|
|
1552
|
-
ignores?: string[];
|
|
1553
|
-
}
|
|
1554
|
-
] | [] | [
|
|
1555
|
-
{
|
|
1556
|
-
ignores?: string[];
|
|
1557
|
-
}
|
|
1558
|
-
]);
|
|
1559
|
-
type VueDefineEmitsDeclaration = [] | [("type-based" | "type-literal" | "runtime")];
|
|
1560
|
-
type VueDefineMacrosOrder = [] | [
|
|
1561
|
-
{
|
|
1562
|
-
order?: ("defineEmits" | "defineProps" | "defineOptions" | "defineSlots" | "defineModel")[];
|
|
1563
|
-
defineExposeLast?: boolean;
|
|
1564
|
-
}
|
|
1565
|
-
];
|
|
1566
|
-
type VueDefinePropsDeclaration = [] | [("type-based" | "runtime")];
|
|
1567
|
-
type VueDotLocation = [] | [("object" | "property")];
|
|
1568
|
-
type VueDotNotation = [] | [
|
|
1569
|
-
{
|
|
1570
|
-
allowKeywords?: boolean;
|
|
1571
|
-
allowPattern?: string;
|
|
1572
|
-
}
|
|
1573
|
-
];
|
|
1574
|
-
type VueEnforceStyleAttribute = [] | [
|
|
1575
|
-
{
|
|
1576
|
-
allow?: [("plain" | "scoped" | "module"), ...(("plain" | "scoped" | "module"))[]];
|
|
1577
|
-
}
|
|
1578
|
-
];
|
|
1579
|
-
type VueEqeqeq = ([] | ["always"] | [
|
|
1580
|
-
"always",
|
|
1581
|
-
{
|
|
1582
|
-
null?: ("always" | "never" | "ignore");
|
|
1583
|
-
}
|
|
1584
|
-
] | [] | [("smart" | "allow-null")]);
|
|
1585
|
-
type VueFirstAttributeLinebreak = [] | [
|
|
1586
|
-
{
|
|
1587
|
-
multiline?: ("below" | "beside" | "ignore");
|
|
1588
|
-
singleline?: ("below" | "beside" | "ignore");
|
|
1589
|
-
}
|
|
1590
|
-
];
|
|
1591
|
-
type VueFuncCallSpacing = ([] | ["never"] | [] | ["always"] | [
|
|
1592
|
-
"always",
|
|
1593
|
-
{
|
|
1594
|
-
allowNewlines?: boolean;
|
|
1595
|
-
}
|
|
1596
|
-
]);
|
|
1597
|
-
type VueHtmlButtonHasType = [] | [
|
|
1598
|
-
{
|
|
1599
|
-
button?: boolean;
|
|
1600
|
-
submit?: boolean;
|
|
1601
|
-
reset?: boolean;
|
|
1602
|
-
}
|
|
1603
|
-
];
|
|
1604
|
-
type VueHtmlClosingBracketNewline = [] | [
|
|
1605
|
-
{
|
|
1606
|
-
singleline?: ("always" | "never");
|
|
1607
|
-
multiline?: ("always" | "never");
|
|
1608
|
-
selfClosingTag?: {
|
|
1609
|
-
singleline?: ("always" | "never");
|
|
1610
|
-
multiline?: ("always" | "never");
|
|
1611
|
-
};
|
|
1612
|
-
}
|
|
1613
|
-
];
|
|
1614
|
-
type VueHtmlClosingBracketSpacing = [] | [
|
|
1615
|
-
{
|
|
1616
|
-
startTag?: ("always" | "never");
|
|
1617
|
-
endTag?: ("always" | "never");
|
|
1618
|
-
selfClosingTag?: ("always" | "never");
|
|
1619
|
-
}
|
|
1620
|
-
];
|
|
1621
|
-
type VueHtmlCommentContentNewline = [] | [
|
|
1622
|
-
(("always" | "never") | {
|
|
1623
|
-
singleline?: ("always" | "never" | "ignore");
|
|
1624
|
-
multiline?: ("always" | "never" | "ignore");
|
|
1625
|
-
})
|
|
1626
|
-
] | [
|
|
1627
|
-
(("always" | "never") | {
|
|
1628
|
-
singleline?: ("always" | "never" | "ignore");
|
|
1629
|
-
multiline?: ("always" | "never" | "ignore");
|
|
1630
|
-
}),
|
|
1631
|
-
{
|
|
1632
|
-
exceptions?: string[];
|
|
1633
|
-
}
|
|
1634
|
-
];
|
|
1635
|
-
type VueHtmlCommentContentSpacing = [] | [("always" | "never")] | [
|
|
1636
|
-
("always" | "never"),
|
|
1637
|
-
{
|
|
1638
|
-
exceptions?: string[];
|
|
1639
|
-
}
|
|
1640
|
-
];
|
|
1641
|
-
type VueHtmlCommentIndent = [] | [(number | "tab")];
|
|
1642
|
-
type VueHtmlIndent = [] | [(number | "tab")] | [
|
|
1643
|
-
(number | "tab"),
|
|
1644
|
-
{
|
|
1645
|
-
attribute?: number;
|
|
1646
|
-
baseIndent?: number;
|
|
1647
|
-
closeBracket?: (number | {
|
|
1648
|
-
startTag?: number;
|
|
1649
|
-
endTag?: number;
|
|
1650
|
-
selfClosingTag?: number;
|
|
1651
|
-
});
|
|
1652
|
-
switchCase?: number;
|
|
1653
|
-
alignAttributesVertically?: boolean;
|
|
1654
|
-
ignores?: (string & {
|
|
1655
|
-
[k: string]: unknown | undefined;
|
|
1656
|
-
} & {
|
|
1657
|
-
[k: string]: unknown | undefined;
|
|
1658
|
-
})[];
|
|
1659
|
-
}
|
|
1660
|
-
];
|
|
1661
|
-
type VueHtmlQuotes = [] | [("double" | "single")] | [
|
|
1662
|
-
("double" | "single"),
|
|
1663
|
-
{
|
|
1664
|
-
avoidEscape?: boolean;
|
|
1665
|
-
}
|
|
1666
|
-
];
|
|
1667
|
-
type VueHtmlSelfClosing = [] | [
|
|
1668
|
-
{
|
|
1669
|
-
html?: {
|
|
1670
|
-
normal?: _VueHtmlSelfClosingOptionValue;
|
|
1671
|
-
void?: _VueHtmlSelfClosingOptionValue;
|
|
1672
|
-
component?: _VueHtmlSelfClosingOptionValue;
|
|
1673
|
-
};
|
|
1674
|
-
svg?: _VueHtmlSelfClosingOptionValue;
|
|
1675
|
-
math?: _VueHtmlSelfClosingOptionValue;
|
|
1676
|
-
}
|
|
1677
|
-
];
|
|
1678
|
-
type _VueHtmlSelfClosingOptionValue = ("always" | "never" | "any");
|
|
1679
|
-
type VueKeySpacing = [] | [
|
|
1680
|
-
({
|
|
1681
|
-
align?: (("colon" | "value") | {
|
|
1682
|
-
mode?: ("strict" | "minimum");
|
|
1683
|
-
on?: ("colon" | "value");
|
|
1684
|
-
beforeColon?: boolean;
|
|
1685
|
-
afterColon?: boolean;
|
|
1686
|
-
});
|
|
1687
|
-
mode?: ("strict" | "minimum");
|
|
1688
|
-
beforeColon?: boolean;
|
|
1689
|
-
afterColon?: boolean;
|
|
1690
|
-
} | {
|
|
1691
|
-
singleLine?: {
|
|
1692
|
-
mode?: ("strict" | "minimum");
|
|
1693
|
-
beforeColon?: boolean;
|
|
1694
|
-
afterColon?: boolean;
|
|
1695
|
-
};
|
|
1696
|
-
multiLine?: {
|
|
1697
|
-
align?: (("colon" | "value") | {
|
|
1698
|
-
mode?: ("strict" | "minimum");
|
|
1699
|
-
on?: ("colon" | "value");
|
|
1700
|
-
beforeColon?: boolean;
|
|
1701
|
-
afterColon?: boolean;
|
|
1702
|
-
});
|
|
1703
|
-
mode?: ("strict" | "minimum");
|
|
1704
|
-
beforeColon?: boolean;
|
|
1705
|
-
afterColon?: boolean;
|
|
1706
|
-
};
|
|
1707
|
-
} | {
|
|
1708
|
-
singleLine?: {
|
|
1709
|
-
mode?: ("strict" | "minimum");
|
|
1710
|
-
beforeColon?: boolean;
|
|
1711
|
-
afterColon?: boolean;
|
|
1712
|
-
};
|
|
1713
|
-
multiLine?: {
|
|
1714
|
-
mode?: ("strict" | "minimum");
|
|
1715
|
-
beforeColon?: boolean;
|
|
1716
|
-
afterColon?: boolean;
|
|
1717
|
-
};
|
|
1718
|
-
align?: {
|
|
1719
|
-
mode?: ("strict" | "minimum");
|
|
1720
|
-
on?: ("colon" | "value");
|
|
1721
|
-
beforeColon?: boolean;
|
|
1722
|
-
afterColon?: boolean;
|
|
1723
|
-
};
|
|
1724
|
-
})
|
|
1725
|
-
];
|
|
1726
|
-
type VueKeywordSpacing = [] | [
|
|
1727
|
-
{
|
|
1728
|
-
before?: boolean;
|
|
1729
|
-
after?: boolean;
|
|
1730
|
-
overrides?: {
|
|
1731
|
-
abstract?: {
|
|
1732
|
-
before?: boolean;
|
|
1733
|
-
after?: boolean;
|
|
1734
|
-
};
|
|
1735
|
-
as?: {
|
|
1736
|
-
before?: boolean;
|
|
1737
|
-
after?: boolean;
|
|
1738
|
-
};
|
|
1739
|
-
async?: {
|
|
1740
|
-
before?: boolean;
|
|
1741
|
-
after?: boolean;
|
|
1742
|
-
};
|
|
1743
|
-
await?: {
|
|
1744
|
-
before?: boolean;
|
|
1745
|
-
after?: boolean;
|
|
1746
|
-
};
|
|
1747
|
-
boolean?: {
|
|
1748
|
-
before?: boolean;
|
|
1749
|
-
after?: boolean;
|
|
1750
|
-
};
|
|
1751
|
-
break?: {
|
|
1752
|
-
before?: boolean;
|
|
1753
|
-
after?: boolean;
|
|
1754
|
-
};
|
|
1755
|
-
byte?: {
|
|
1756
|
-
before?: boolean;
|
|
1757
|
-
after?: boolean;
|
|
1758
|
-
};
|
|
1759
|
-
case?: {
|
|
1760
|
-
before?: boolean;
|
|
1761
|
-
after?: boolean;
|
|
1762
|
-
};
|
|
1763
|
-
catch?: {
|
|
1764
|
-
before?: boolean;
|
|
1765
|
-
after?: boolean;
|
|
1766
|
-
};
|
|
1767
|
-
char?: {
|
|
1768
|
-
before?: boolean;
|
|
1769
|
-
after?: boolean;
|
|
1770
|
-
};
|
|
1771
|
-
class?: {
|
|
1772
|
-
before?: boolean;
|
|
1773
|
-
after?: boolean;
|
|
1774
|
-
};
|
|
1775
|
-
const?: {
|
|
1776
|
-
before?: boolean;
|
|
1777
|
-
after?: boolean;
|
|
1778
|
-
};
|
|
1779
|
-
continue?: {
|
|
1780
|
-
before?: boolean;
|
|
1781
|
-
after?: boolean;
|
|
1782
|
-
};
|
|
1783
|
-
debugger?: {
|
|
1784
|
-
before?: boolean;
|
|
1785
|
-
after?: boolean;
|
|
1786
|
-
};
|
|
1787
|
-
default?: {
|
|
1788
|
-
before?: boolean;
|
|
1789
|
-
after?: boolean;
|
|
1790
|
-
};
|
|
1791
|
-
delete?: {
|
|
1792
|
-
before?: boolean;
|
|
1793
|
-
after?: boolean;
|
|
1794
|
-
};
|
|
1795
|
-
do?: {
|
|
1796
|
-
before?: boolean;
|
|
1797
|
-
after?: boolean;
|
|
1798
|
-
};
|
|
1799
|
-
double?: {
|
|
1800
|
-
before?: boolean;
|
|
1801
|
-
after?: boolean;
|
|
1802
|
-
};
|
|
1803
|
-
else?: {
|
|
1804
|
-
before?: boolean;
|
|
1805
|
-
after?: boolean;
|
|
1806
|
-
};
|
|
1807
|
-
enum?: {
|
|
1808
|
-
before?: boolean;
|
|
1809
|
-
after?: boolean;
|
|
1810
|
-
};
|
|
1811
|
-
export?: {
|
|
1812
|
-
before?: boolean;
|
|
1813
|
-
after?: boolean;
|
|
1814
|
-
};
|
|
1815
|
-
extends?: {
|
|
1816
|
-
before?: boolean;
|
|
1817
|
-
after?: boolean;
|
|
1818
|
-
};
|
|
1819
|
-
false?: {
|
|
1820
|
-
before?: boolean;
|
|
1821
|
-
after?: boolean;
|
|
1822
|
-
};
|
|
1823
|
-
final?: {
|
|
1824
|
-
before?: boolean;
|
|
1825
|
-
after?: boolean;
|
|
1826
|
-
};
|
|
1827
|
-
finally?: {
|
|
1828
|
-
before?: boolean;
|
|
1829
|
-
after?: boolean;
|
|
1830
|
-
};
|
|
1831
|
-
float?: {
|
|
1832
|
-
before?: boolean;
|
|
1833
|
-
after?: boolean;
|
|
1834
|
-
};
|
|
1835
|
-
for?: {
|
|
1836
|
-
before?: boolean;
|
|
1837
|
-
after?: boolean;
|
|
1838
|
-
};
|
|
1839
|
-
from?: {
|
|
1840
|
-
before?: boolean;
|
|
1841
|
-
after?: boolean;
|
|
1842
|
-
};
|
|
1843
|
-
function?: {
|
|
1844
|
-
before?: boolean;
|
|
1845
|
-
after?: boolean;
|
|
1846
|
-
};
|
|
1847
|
-
get?: {
|
|
1848
|
-
before?: boolean;
|
|
1849
|
-
after?: boolean;
|
|
1850
|
-
};
|
|
1851
|
-
goto?: {
|
|
1852
|
-
before?: boolean;
|
|
1853
|
-
after?: boolean;
|
|
1854
|
-
};
|
|
1855
|
-
if?: {
|
|
1856
|
-
before?: boolean;
|
|
1857
|
-
after?: boolean;
|
|
1858
|
-
};
|
|
1859
|
-
implements?: {
|
|
1860
|
-
before?: boolean;
|
|
1861
|
-
after?: boolean;
|
|
1862
|
-
};
|
|
1863
|
-
import?: {
|
|
1864
|
-
before?: boolean;
|
|
1865
|
-
after?: boolean;
|
|
1866
|
-
};
|
|
1867
|
-
in?: {
|
|
1868
|
-
before?: boolean;
|
|
1869
|
-
after?: boolean;
|
|
1870
|
-
};
|
|
1871
|
-
instanceof?: {
|
|
1872
|
-
before?: boolean;
|
|
1873
|
-
after?: boolean;
|
|
1874
|
-
};
|
|
1875
|
-
int?: {
|
|
1876
|
-
before?: boolean;
|
|
1877
|
-
after?: boolean;
|
|
1878
|
-
};
|
|
1879
|
-
interface?: {
|
|
1880
|
-
before?: boolean;
|
|
1881
|
-
after?: boolean;
|
|
1882
|
-
};
|
|
1883
|
-
let?: {
|
|
1884
|
-
before?: boolean;
|
|
1885
|
-
after?: boolean;
|
|
1886
|
-
};
|
|
1887
|
-
long?: {
|
|
1888
|
-
before?: boolean;
|
|
1889
|
-
after?: boolean;
|
|
1890
|
-
};
|
|
1891
|
-
native?: {
|
|
1892
|
-
before?: boolean;
|
|
1893
|
-
after?: boolean;
|
|
1894
|
-
};
|
|
1895
|
-
new?: {
|
|
1896
|
-
before?: boolean;
|
|
1897
|
-
after?: boolean;
|
|
1898
|
-
};
|
|
1899
|
-
null?: {
|
|
1900
|
-
before?: boolean;
|
|
1901
|
-
after?: boolean;
|
|
1902
|
-
};
|
|
1903
|
-
of?: {
|
|
1904
|
-
before?: boolean;
|
|
1905
|
-
after?: boolean;
|
|
1906
|
-
};
|
|
1907
|
-
package?: {
|
|
1908
|
-
before?: boolean;
|
|
1909
|
-
after?: boolean;
|
|
1910
|
-
};
|
|
1911
|
-
private?: {
|
|
1912
|
-
before?: boolean;
|
|
1913
|
-
after?: boolean;
|
|
1914
|
-
};
|
|
1915
|
-
protected?: {
|
|
1916
|
-
before?: boolean;
|
|
1917
|
-
after?: boolean;
|
|
1918
|
-
};
|
|
1919
|
-
public?: {
|
|
1920
|
-
before?: boolean;
|
|
1921
|
-
after?: boolean;
|
|
1922
|
-
};
|
|
1923
|
-
return?: {
|
|
1924
|
-
before?: boolean;
|
|
1925
|
-
after?: boolean;
|
|
1926
|
-
};
|
|
1927
|
-
set?: {
|
|
1928
|
-
before?: boolean;
|
|
1929
|
-
after?: boolean;
|
|
1930
|
-
};
|
|
1931
|
-
short?: {
|
|
1932
|
-
before?: boolean;
|
|
1933
|
-
after?: boolean;
|
|
1934
|
-
};
|
|
1935
|
-
static?: {
|
|
1936
|
-
before?: boolean;
|
|
1937
|
-
after?: boolean;
|
|
1938
|
-
};
|
|
1939
|
-
super?: {
|
|
1940
|
-
before?: boolean;
|
|
1941
|
-
after?: boolean;
|
|
1942
|
-
};
|
|
1943
|
-
switch?: {
|
|
1944
|
-
before?: boolean;
|
|
1945
|
-
after?: boolean;
|
|
1946
|
-
};
|
|
1947
|
-
synchronized?: {
|
|
1948
|
-
before?: boolean;
|
|
1949
|
-
after?: boolean;
|
|
1950
|
-
};
|
|
1951
|
-
this?: {
|
|
1952
|
-
before?: boolean;
|
|
1953
|
-
after?: boolean;
|
|
1954
|
-
};
|
|
1955
|
-
throw?: {
|
|
1956
|
-
before?: boolean;
|
|
1957
|
-
after?: boolean;
|
|
1958
|
-
};
|
|
1959
|
-
throws?: {
|
|
1960
|
-
before?: boolean;
|
|
1961
|
-
after?: boolean;
|
|
1962
|
-
};
|
|
1963
|
-
transient?: {
|
|
1964
|
-
before?: boolean;
|
|
1965
|
-
after?: boolean;
|
|
1966
|
-
};
|
|
1967
|
-
true?: {
|
|
1968
|
-
before?: boolean;
|
|
1969
|
-
after?: boolean;
|
|
1970
|
-
};
|
|
1971
|
-
try?: {
|
|
1972
|
-
before?: boolean;
|
|
1973
|
-
after?: boolean;
|
|
1974
|
-
};
|
|
1975
|
-
typeof?: {
|
|
1976
|
-
before?: boolean;
|
|
1977
|
-
after?: boolean;
|
|
1978
|
-
};
|
|
1979
|
-
var?: {
|
|
1980
|
-
before?: boolean;
|
|
1981
|
-
after?: boolean;
|
|
1982
|
-
};
|
|
1983
|
-
void?: {
|
|
1984
|
-
before?: boolean;
|
|
1985
|
-
after?: boolean;
|
|
1986
|
-
};
|
|
1987
|
-
volatile?: {
|
|
1988
|
-
before?: boolean;
|
|
1989
|
-
after?: boolean;
|
|
1990
|
-
};
|
|
1991
|
-
while?: {
|
|
1992
|
-
before?: boolean;
|
|
1993
|
-
after?: boolean;
|
|
1994
|
-
};
|
|
1995
|
-
with?: {
|
|
1996
|
-
before?: boolean;
|
|
1997
|
-
after?: boolean;
|
|
1998
|
-
};
|
|
1999
|
-
yield?: {
|
|
2000
|
-
before?: boolean;
|
|
2001
|
-
after?: boolean;
|
|
2002
|
-
};
|
|
2003
|
-
};
|
|
2004
|
-
}
|
|
2005
|
-
];
|
|
2006
|
-
type VueMatchComponentFileName = [] | [
|
|
2007
|
-
{
|
|
2008
|
-
extensions?: string[];
|
|
2009
|
-
shouldMatchCase?: boolean;
|
|
2010
|
-
}
|
|
2011
|
-
];
|
|
2012
|
-
type VueMaxAttributesPerLine = [] | [
|
|
2013
|
-
{
|
|
2014
|
-
singleline?: (number | {
|
|
2015
|
-
max?: number;
|
|
2016
|
-
});
|
|
2017
|
-
multiline?: (number | {
|
|
2018
|
-
max?: number;
|
|
2019
|
-
});
|
|
2020
|
-
}
|
|
2021
|
-
];
|
|
2022
|
-
type VueMaxLen = [] | [
|
|
2023
|
-
({
|
|
2024
|
-
code?: number;
|
|
2025
|
-
template?: number;
|
|
2026
|
-
comments?: number;
|
|
2027
|
-
tabWidth?: number;
|
|
2028
|
-
ignorePattern?: string;
|
|
2029
|
-
ignoreComments?: boolean;
|
|
2030
|
-
ignoreTrailingComments?: boolean;
|
|
2031
|
-
ignoreUrls?: boolean;
|
|
2032
|
-
ignoreStrings?: boolean;
|
|
2033
|
-
ignoreTemplateLiterals?: boolean;
|
|
2034
|
-
ignoreRegExpLiterals?: boolean;
|
|
2035
|
-
ignoreHTMLAttributeValues?: boolean;
|
|
2036
|
-
ignoreHTMLTextContents?: boolean;
|
|
2037
|
-
} | number)
|
|
2038
|
-
] | [
|
|
2039
|
-
({
|
|
2040
|
-
code?: number;
|
|
2041
|
-
template?: number;
|
|
2042
|
-
comments?: number;
|
|
2043
|
-
tabWidth?: number;
|
|
2044
|
-
ignorePattern?: string;
|
|
2045
|
-
ignoreComments?: boolean;
|
|
2046
|
-
ignoreTrailingComments?: boolean;
|
|
2047
|
-
ignoreUrls?: boolean;
|
|
2048
|
-
ignoreStrings?: boolean;
|
|
2049
|
-
ignoreTemplateLiterals?: boolean;
|
|
2050
|
-
ignoreRegExpLiterals?: boolean;
|
|
2051
|
-
ignoreHTMLAttributeValues?: boolean;
|
|
2052
|
-
ignoreHTMLTextContents?: boolean;
|
|
2053
|
-
} | number),
|
|
2054
|
-
({
|
|
2055
|
-
code?: number;
|
|
2056
|
-
template?: number;
|
|
2057
|
-
comments?: number;
|
|
2058
|
-
tabWidth?: number;
|
|
2059
|
-
ignorePattern?: string;
|
|
2060
|
-
ignoreComments?: boolean;
|
|
2061
|
-
ignoreTrailingComments?: boolean;
|
|
2062
|
-
ignoreUrls?: boolean;
|
|
2063
|
-
ignoreStrings?: boolean;
|
|
2064
|
-
ignoreTemplateLiterals?: boolean;
|
|
2065
|
-
ignoreRegExpLiterals?: boolean;
|
|
2066
|
-
ignoreHTMLAttributeValues?: boolean;
|
|
2067
|
-
ignoreHTMLTextContents?: boolean;
|
|
2068
|
-
} | number)
|
|
2069
|
-
] | [
|
|
2070
|
-
({
|
|
2071
|
-
code?: number;
|
|
2072
|
-
template?: number;
|
|
2073
|
-
comments?: number;
|
|
2074
|
-
tabWidth?: number;
|
|
2075
|
-
ignorePattern?: string;
|
|
2076
|
-
ignoreComments?: boolean;
|
|
2077
|
-
ignoreTrailingComments?: boolean;
|
|
2078
|
-
ignoreUrls?: boolean;
|
|
2079
|
-
ignoreStrings?: boolean;
|
|
2080
|
-
ignoreTemplateLiterals?: boolean;
|
|
2081
|
-
ignoreRegExpLiterals?: boolean;
|
|
2082
|
-
ignoreHTMLAttributeValues?: boolean;
|
|
2083
|
-
ignoreHTMLTextContents?: boolean;
|
|
2084
|
-
} | number),
|
|
2085
|
-
({
|
|
2086
|
-
code?: number;
|
|
2087
|
-
template?: number;
|
|
2088
|
-
comments?: number;
|
|
2089
|
-
tabWidth?: number;
|
|
2090
|
-
ignorePattern?: string;
|
|
2091
|
-
ignoreComments?: boolean;
|
|
2092
|
-
ignoreTrailingComments?: boolean;
|
|
2093
|
-
ignoreUrls?: boolean;
|
|
2094
|
-
ignoreStrings?: boolean;
|
|
2095
|
-
ignoreTemplateLiterals?: boolean;
|
|
2096
|
-
ignoreRegExpLiterals?: boolean;
|
|
2097
|
-
ignoreHTMLAttributeValues?: boolean;
|
|
2098
|
-
ignoreHTMLTextContents?: boolean;
|
|
2099
|
-
} | number),
|
|
2100
|
-
{
|
|
2101
|
-
code?: number;
|
|
2102
|
-
template?: number;
|
|
2103
|
-
comments?: number;
|
|
2104
|
-
tabWidth?: number;
|
|
2105
|
-
ignorePattern?: string;
|
|
2106
|
-
ignoreComments?: boolean;
|
|
2107
|
-
ignoreTrailingComments?: boolean;
|
|
2108
|
-
ignoreUrls?: boolean;
|
|
2109
|
-
ignoreStrings?: boolean;
|
|
2110
|
-
ignoreTemplateLiterals?: boolean;
|
|
2111
|
-
ignoreRegExpLiterals?: boolean;
|
|
2112
|
-
ignoreHTMLAttributeValues?: boolean;
|
|
2113
|
-
ignoreHTMLTextContents?: boolean;
|
|
2114
|
-
}
|
|
2115
|
-
];
|
|
2116
|
-
type VueMaxLinesPerBlock = [] | [
|
|
2117
|
-
{
|
|
2118
|
-
style?: number;
|
|
2119
|
-
template?: number;
|
|
2120
|
-
script?: number;
|
|
2121
|
-
skipBlankLines?: boolean;
|
|
2122
|
-
}
|
|
2123
|
-
];
|
|
2124
|
-
type VueMultiWordComponentNames = [] | [
|
|
2125
|
-
{
|
|
2126
|
-
ignores?: string[];
|
|
2127
|
-
}
|
|
2128
|
-
];
|
|
2129
|
-
type VueMultilineHtmlElementContentNewline = [] | [
|
|
2130
|
-
{
|
|
2131
|
-
ignoreWhenEmpty?: boolean;
|
|
2132
|
-
ignores?: string[];
|
|
2133
|
-
allowEmptyLines?: boolean;
|
|
2134
|
-
}
|
|
2135
|
-
];
|
|
2136
|
-
type VueMultilineTernary = [] | [("always" | "always-multiline" | "never")];
|
|
2137
|
-
type VueMustacheInterpolationSpacing = [] | [("always" | "never")];
|
|
2138
|
-
type VueNewLineBetweenMultiLineProperty = [] | [
|
|
2139
|
-
{
|
|
2140
|
-
minLineOfMultilineProperty?: number;
|
|
2141
|
-
}
|
|
2142
|
-
];
|
|
2143
|
-
type VueNextTickStyle = [] | [("promise" | "callback")];
|
|
2144
|
-
type VueNoBareStringsInTemplate = [] | [
|
|
2145
|
-
{
|
|
2146
|
-
allowlist?: string[];
|
|
2147
|
-
attributes?: {
|
|
2148
|
-
[k: string]: string[];
|
|
2149
|
-
};
|
|
2150
|
-
directives?: string[];
|
|
2151
|
-
}
|
|
2152
|
-
];
|
|
2153
|
-
type VueNoBooleanDefault = [] | [("default-false" | "no-default")];
|
|
2154
|
-
type VueNoChildContent = [] | [
|
|
2155
|
-
{
|
|
2156
|
-
additionalDirectives: [string, ...(string)[]];
|
|
2157
|
-
}
|
|
2158
|
-
];
|
|
2159
|
-
type VueNoConsole = [] | [
|
|
2160
|
-
{
|
|
2161
|
-
allow?: [string, ...(string)[]];
|
|
2162
|
-
}
|
|
2163
|
-
];
|
|
2164
|
-
type VueNoConstantCondition = [] | [
|
|
2165
|
-
{
|
|
2166
|
-
checkLoops?: ("all" | "allExceptWhileTrue" | "none" | true | false);
|
|
2167
|
-
}
|
|
2168
|
-
];
|
|
2169
|
-
type VueNoDeprecatedModelDefinition = [] | [
|
|
2170
|
-
{
|
|
2171
|
-
allowVue3Compat?: boolean;
|
|
2172
|
-
}
|
|
2173
|
-
];
|
|
2174
|
-
type VueNoDeprecatedRouterLinkTagProp = [] | [
|
|
2175
|
-
{
|
|
2176
|
-
components?: [string, ...(string)[]];
|
|
2177
|
-
}
|
|
2178
|
-
];
|
|
2179
|
-
type VueNoDeprecatedSlotAttribute = [] | [
|
|
2180
|
-
{
|
|
2181
|
-
ignore?: string[];
|
|
2182
|
-
}
|
|
2183
|
-
];
|
|
2184
|
-
type VueNoDupeKeys = [] | [
|
|
2185
|
-
{
|
|
2186
|
-
groups?: unknown[];
|
|
2187
|
-
}
|
|
2188
|
-
];
|
|
2189
|
-
type VueNoDuplicateAttributes = [] | [
|
|
2190
|
-
{
|
|
2191
|
-
allowCoexistClass?: boolean;
|
|
2192
|
-
allowCoexistStyle?: boolean;
|
|
2193
|
-
}
|
|
2194
|
-
];
|
|
2195
|
-
type VueNoEmptyPattern = [] | [
|
|
2196
|
-
{
|
|
2197
|
-
allowObjectPatternsAsParameters?: boolean;
|
|
2198
|
-
}
|
|
2199
|
-
];
|
|
2200
|
-
type VueNoExtraParens = ([] | ["functions"] | [] | ["all"] | [
|
|
2201
|
-
"all",
|
|
2202
|
-
{
|
|
2203
|
-
conditionalAssign?: boolean;
|
|
2204
|
-
ternaryOperandBinaryExpressions?: boolean;
|
|
2205
|
-
nestedBinaryExpressions?: boolean;
|
|
2206
|
-
returnAssign?: boolean;
|
|
2207
|
-
ignoreJSX?: ("none" | "all" | "single-line" | "multi-line");
|
|
2208
|
-
enforceForArrowConditionals?: boolean;
|
|
2209
|
-
enforceForSequenceExpressions?: boolean;
|
|
2210
|
-
enforceForNewInMemberExpressions?: boolean;
|
|
2211
|
-
enforceForFunctionPrototypeMethods?: boolean;
|
|
2212
|
-
allowParensAfterCommentPattern?: string;
|
|
2213
|
-
}
|
|
2214
|
-
]);
|
|
2215
|
-
type VueNoIrregularWhitespace = [] | [
|
|
2216
|
-
{
|
|
2217
|
-
skipComments?: boolean;
|
|
2218
|
-
skipStrings?: boolean;
|
|
2219
|
-
skipTemplates?: boolean;
|
|
2220
|
-
skipRegExps?: boolean;
|
|
2221
|
-
skipHTMLAttributeValues?: boolean;
|
|
2222
|
-
skipHTMLTextContents?: boolean;
|
|
2223
|
-
}
|
|
2224
|
-
];
|
|
2225
|
-
type VueNoLoneTemplate = [] | [
|
|
2226
|
-
{
|
|
2227
|
-
ignoreAccessible?: boolean;
|
|
2228
|
-
}
|
|
2229
|
-
];
|
|
2230
|
-
type VueNoMultiSpaces = [] | [
|
|
2231
|
-
{
|
|
2232
|
-
ignoreProperties?: boolean;
|
|
2233
|
-
}
|
|
2234
|
-
];
|
|
2235
|
-
type VueNoMutatingProps = [] | [
|
|
2236
|
-
{
|
|
2237
|
-
shallowOnly?: boolean;
|
|
2238
|
-
}
|
|
2239
|
-
];
|
|
2240
|
-
type VueNoParsingError = [] | [
|
|
2241
|
-
{
|
|
2242
|
-
"abrupt-closing-of-empty-comment"?: boolean;
|
|
2243
|
-
"absence-of-digits-in-numeric-character-reference"?: boolean;
|
|
2244
|
-
"cdata-in-html-content"?: boolean;
|
|
2245
|
-
"character-reference-outside-unicode-range"?: boolean;
|
|
2246
|
-
"control-character-in-input-stream"?: boolean;
|
|
2247
|
-
"control-character-reference"?: boolean;
|
|
2248
|
-
"eof-before-tag-name"?: boolean;
|
|
2249
|
-
"eof-in-cdata"?: boolean;
|
|
2250
|
-
"eof-in-comment"?: boolean;
|
|
2251
|
-
"eof-in-tag"?: boolean;
|
|
2252
|
-
"incorrectly-closed-comment"?: boolean;
|
|
2253
|
-
"incorrectly-opened-comment"?: boolean;
|
|
2254
|
-
"invalid-first-character-of-tag-name"?: boolean;
|
|
2255
|
-
"missing-attribute-value"?: boolean;
|
|
2256
|
-
"missing-end-tag-name"?: boolean;
|
|
2257
|
-
"missing-semicolon-after-character-reference"?: boolean;
|
|
2258
|
-
"missing-whitespace-between-attributes"?: boolean;
|
|
2259
|
-
"nested-comment"?: boolean;
|
|
2260
|
-
"noncharacter-character-reference"?: boolean;
|
|
2261
|
-
"noncharacter-in-input-stream"?: boolean;
|
|
2262
|
-
"null-character-reference"?: boolean;
|
|
2263
|
-
"surrogate-character-reference"?: boolean;
|
|
2264
|
-
"surrogate-in-input-stream"?: boolean;
|
|
2265
|
-
"unexpected-character-in-attribute-name"?: boolean;
|
|
2266
|
-
"unexpected-character-in-unquoted-attribute-value"?: boolean;
|
|
2267
|
-
"unexpected-equals-sign-before-attribute-name"?: boolean;
|
|
2268
|
-
"unexpected-null-character"?: boolean;
|
|
2269
|
-
"unexpected-question-mark-instead-of-tag-name"?: boolean;
|
|
2270
|
-
"unexpected-solidus-in-tag"?: boolean;
|
|
2271
|
-
"unknown-named-character-reference"?: boolean;
|
|
2272
|
-
"end-tag-with-attributes"?: boolean;
|
|
2273
|
-
"duplicate-attribute"?: boolean;
|
|
2274
|
-
"end-tag-with-trailing-solidus"?: boolean;
|
|
2275
|
-
"non-void-html-element-start-tag-with-trailing-solidus"?: boolean;
|
|
2276
|
-
"x-invalid-end-tag"?: boolean;
|
|
2277
|
-
"x-invalid-namespace"?: boolean;
|
|
2278
|
-
}
|
|
2279
|
-
];
|
|
2280
|
-
type VueNoPotentialComponentOptionTypo = [] | [
|
|
2281
|
-
{
|
|
2282
|
-
presets?: ("all" | "vue" | "vue-router" | "nuxt")[];
|
|
2283
|
-
custom?: string[];
|
|
2284
|
-
threshold?: number;
|
|
2285
|
-
}
|
|
2286
|
-
];
|
|
2287
|
-
type VueNoRequiredPropWithDefault = [] | [
|
|
2288
|
-
{
|
|
2289
|
-
autofix?: boolean;
|
|
2290
|
-
}
|
|
2291
|
-
];
|
|
2292
|
-
type VueNoReservedComponentNames = [] | [
|
|
2293
|
-
{
|
|
2294
|
-
disallowVueBuiltInComponents?: boolean;
|
|
2295
|
-
disallowVue3BuiltInComponents?: boolean;
|
|
2296
|
-
}
|
|
2297
|
-
];
|
|
2298
|
-
type VueNoReservedKeys = [] | [
|
|
2299
|
-
{
|
|
2300
|
-
reserved?: unknown[];
|
|
2301
|
-
groups?: unknown[];
|
|
2302
|
-
}
|
|
2303
|
-
];
|
|
2304
|
-
type VueNoReservedProps = [] | [
|
|
2305
|
-
{
|
|
2306
|
-
vueVersion?: (2 | 3);
|
|
2307
|
-
}
|
|
2308
|
-
];
|
|
2309
|
-
type VueNoRestrictedBlock = (string | {
|
|
2310
|
-
element: string;
|
|
2311
|
-
message?: string;
|
|
2312
|
-
})[];
|
|
2313
|
-
type VueNoRestrictedCallAfterAwait = {
|
|
2314
|
-
module: string;
|
|
2315
|
-
path?: (string | string[]);
|
|
2316
|
-
message?: string;
|
|
2317
|
-
}[];
|
|
2318
|
-
type VueNoRestrictedClass = string[];
|
|
2319
|
-
type VueNoRestrictedComponentNames = (string | {
|
|
2320
|
-
name: string;
|
|
2321
|
-
message?: string;
|
|
2322
|
-
suggest?: string;
|
|
2323
|
-
})[];
|
|
2324
|
-
type VueNoRestrictedComponentOptions = (string | string[] | {
|
|
2325
|
-
name: (string | string[]);
|
|
2326
|
-
message?: string;
|
|
2327
|
-
})[];
|
|
2328
|
-
type VueNoRestrictedCustomEvent = (string | {
|
|
2329
|
-
event: string;
|
|
2330
|
-
message?: string;
|
|
2331
|
-
suggest?: string;
|
|
2332
|
-
})[];
|
|
2333
|
-
type VueNoRestrictedHtmlElements = (string | {
|
|
2334
|
-
element: string;
|
|
2335
|
-
message?: string;
|
|
2336
|
-
})[];
|
|
2337
|
-
type VueNoRestrictedProps = (string | {
|
|
2338
|
-
name: string;
|
|
2339
|
-
message?: string;
|
|
2340
|
-
suggest?: string;
|
|
2341
|
-
})[];
|
|
2342
|
-
type VueNoRestrictedStaticAttribute = (string | {
|
|
2343
|
-
key: string;
|
|
2344
|
-
value?: (string | true);
|
|
2345
|
-
element?: string;
|
|
2346
|
-
message?: string;
|
|
2347
|
-
})[];
|
|
2348
|
-
type VueNoRestrictedSyntax = (string | {
|
|
2349
|
-
selector: string;
|
|
2350
|
-
message?: string;
|
|
2351
|
-
})[];
|
|
2352
|
-
type VueNoRestrictedVBind = ((string | null) | {
|
|
2353
|
-
argument: (string | null);
|
|
2354
|
-
modifiers?: ("prop" | "camel" | "sync" | "attr")[];
|
|
2355
|
-
element?: string;
|
|
2356
|
-
message?: string;
|
|
2357
|
-
})[];
|
|
2358
|
-
type VueNoRestrictedVOn = ((string | null) | {
|
|
2359
|
-
argument: (string | null);
|
|
2360
|
-
element?: string;
|
|
2361
|
-
message?: string;
|
|
2362
|
-
modifiers?: [("prevent" | "stop" | "capture" | "self" | "once" | "passive"), ...(("prevent" | "stop" | "capture" | "self" | "once" | "passive"))[]];
|
|
2363
|
-
})[];
|
|
2364
|
-
type VueNoStaticInlineStyles = [] | [
|
|
2365
|
-
{
|
|
2366
|
-
allowBinding?: boolean;
|
|
2367
|
-
}
|
|
2368
|
-
];
|
|
2369
|
-
type VueNoTemplateShadow = [] | [
|
|
2370
|
-
{
|
|
2371
|
-
allow?: string[];
|
|
2372
|
-
}
|
|
2373
|
-
];
|
|
2374
|
-
type VueNoTemplateTargetBlank = [] | [
|
|
2375
|
-
{
|
|
2376
|
-
allowReferrer?: boolean;
|
|
2377
|
-
enforceDynamicLinks?: ("always" | "never");
|
|
2378
|
-
}
|
|
2379
|
-
];
|
|
2380
|
-
type VueNoUndefComponents = [] | [
|
|
2381
|
-
{
|
|
2382
|
-
ignorePatterns?: unknown[];
|
|
2383
|
-
}
|
|
2384
|
-
];
|
|
2385
|
-
type VueNoUndefProperties = [] | [
|
|
2386
|
-
{
|
|
2387
|
-
ignores?: string[];
|
|
2388
|
-
}
|
|
2389
|
-
];
|
|
2390
|
-
type VueNoUnsupportedFeatures = [] | [
|
|
2391
|
-
{
|
|
2392
|
-
version?: string;
|
|
2393
|
-
ignores?: ("slot-scope-attribute" | "dynamic-directive-arguments" | "v-slot" | "script-setup" | "style-css-vars-injection" | "v-model-argument" | "v-model-custom-modifiers" | "v-is" | "is-attribute-with-vue-prefix" | "v-memo" | "v-bind-prop-modifier-shorthand" | "v-bind-attr-modifier" | "define-options" | "define-slots" | "define-model" | "v-bind-same-name-shorthand")[];
|
|
2394
|
-
}
|
|
2395
|
-
];
|
|
2396
|
-
type VueNoUnusedComponents = [] | [
|
|
2397
|
-
{
|
|
2398
|
-
ignoreWhenBindingPresent?: boolean;
|
|
2399
|
-
}
|
|
2400
|
-
];
|
|
2401
|
-
type VueNoUnusedProperties = [] | [
|
|
2402
|
-
{
|
|
2403
|
-
groups?: ("props" | "data" | "asyncData" | "computed" | "methods" | "setup")[];
|
|
2404
|
-
deepData?: boolean;
|
|
2405
|
-
ignorePublicMembers?: boolean;
|
|
2406
|
-
unreferencedOptions?: ("unknownMemberAsUnreferenced" | "returnAsUnreferenced")[];
|
|
2407
|
-
}
|
|
2408
|
-
];
|
|
2409
|
-
type VueNoUnusedVars = [] | [
|
|
2410
|
-
{
|
|
2411
|
-
ignorePattern?: string;
|
|
2412
|
-
}
|
|
2413
|
-
];
|
|
2414
|
-
type VueNoUseVIfWithVFor = [] | [
|
|
2415
|
-
{
|
|
2416
|
-
allowUsingIterationVar?: boolean;
|
|
2417
|
-
}
|
|
2418
|
-
];
|
|
2419
|
-
type VueNoUselessMustaches = [] | [
|
|
2420
|
-
{
|
|
2421
|
-
ignoreIncludesComment?: boolean;
|
|
2422
|
-
ignoreStringEscape?: boolean;
|
|
2423
|
-
}
|
|
2424
|
-
];
|
|
2425
|
-
type VueNoUselessVBind = [] | [
|
|
2426
|
-
{
|
|
2427
|
-
ignoreIncludesComment?: boolean;
|
|
2428
|
-
ignoreStringEscape?: boolean;
|
|
2429
|
-
}
|
|
2430
|
-
];
|
|
2431
|
-
type VueNoVTextVHtmlOnComponent = [] | [
|
|
2432
|
-
{
|
|
2433
|
-
allow?: string[];
|
|
2434
|
-
}
|
|
2435
|
-
];
|
|
2436
|
-
type VueObjectCurlyNewline = [] | [
|
|
2437
|
-
((("always" | "never") | {
|
|
2438
|
-
multiline?: boolean;
|
|
2439
|
-
minProperties?: number;
|
|
2440
|
-
consistent?: boolean;
|
|
2441
|
-
}) | {
|
|
2442
|
-
ObjectExpression?: (("always" | "never") | {
|
|
2443
|
-
multiline?: boolean;
|
|
2444
|
-
minProperties?: number;
|
|
2445
|
-
consistent?: boolean;
|
|
2446
|
-
});
|
|
2447
|
-
ObjectPattern?: (("always" | "never") | {
|
|
2448
|
-
multiline?: boolean;
|
|
2449
|
-
minProperties?: number;
|
|
2450
|
-
consistent?: boolean;
|
|
2451
|
-
});
|
|
2452
|
-
ImportDeclaration?: (("always" | "never") | {
|
|
2453
|
-
multiline?: boolean;
|
|
2454
|
-
minProperties?: number;
|
|
2455
|
-
consistent?: boolean;
|
|
2456
|
-
});
|
|
2457
|
-
ExportDeclaration?: (("always" | "never") | {
|
|
2458
|
-
multiline?: boolean;
|
|
2459
|
-
minProperties?: number;
|
|
2460
|
-
consistent?: boolean;
|
|
2461
|
-
});
|
|
2462
|
-
})
|
|
2463
|
-
];
|
|
2464
|
-
type VueObjectCurlySpacing = [] | [("always" | "never")] | [
|
|
2465
|
-
("always" | "never"),
|
|
2466
|
-
{
|
|
2467
|
-
arraysInObjects?: boolean;
|
|
2468
|
-
objectsInObjects?: boolean;
|
|
2469
|
-
}
|
|
2470
|
-
];
|
|
2471
|
-
type VueObjectPropertyNewline = [] | [
|
|
2472
|
-
{
|
|
2473
|
-
allowAllPropertiesOnSameLine?: boolean;
|
|
2474
|
-
allowMultiplePropertiesPerLine?: boolean;
|
|
2475
|
-
}
|
|
2476
|
-
];
|
|
2477
|
-
type VueObjectShorthand = ([] | [("always" | "methods" | "properties" | "never" | "consistent" | "consistent-as-needed")] | [] | [("always" | "methods" | "properties")] | [
|
|
2478
|
-
("always" | "methods" | "properties"),
|
|
2479
|
-
{
|
|
2480
|
-
avoidQuotes?: boolean;
|
|
2481
|
-
}
|
|
2482
|
-
] | [] | [("always" | "methods")] | [
|
|
2483
|
-
("always" | "methods"),
|
|
2484
|
-
{
|
|
2485
|
-
ignoreConstructors?: boolean;
|
|
2486
|
-
methodsIgnorePattern?: string;
|
|
2487
|
-
avoidQuotes?: boolean;
|
|
2488
|
-
avoidExplicitReturnArrows?: boolean;
|
|
2489
|
-
}
|
|
2490
|
-
]);
|
|
2491
|
-
type VueOperatorLinebreak = [] | [("after" | "before" | "none" | null)] | [
|
|
2492
|
-
("after" | "before" | "none" | null),
|
|
2493
|
-
{
|
|
2494
|
-
overrides?: {
|
|
2495
|
-
[k: string]: ("after" | "before" | "none" | "ignore") | undefined;
|
|
2496
|
-
};
|
|
2497
|
-
}
|
|
2498
|
-
];
|
|
2499
|
-
type VueOrderInComponents = [] | [
|
|
2500
|
-
{
|
|
2501
|
-
order?: unknown[];
|
|
2502
|
-
}
|
|
2503
|
-
];
|
|
2504
|
-
type VuePaddingLineBetweenBlocks = [] | [("never" | "always")];
|
|
2505
|
-
type VuePaddingLineBetweenTags = [] | [
|
|
2506
|
-
{
|
|
2507
|
-
blankLine: ("always" | "never" | "consistent");
|
|
2508
|
-
prev: string;
|
|
2509
|
-
next: string;
|
|
2510
|
-
}[]
|
|
2511
|
-
];
|
|
2512
|
-
type VuePaddingLinesInComponentDefinition = [] | [
|
|
2513
|
-
(("always" | "never") | {
|
|
2514
|
-
betweenOptions?: ("never" | "always" | "ignore");
|
|
2515
|
-
withinOption?: (("never" | "always" | "ignore") | {
|
|
2516
|
-
[k: string]: (("never" | "always" | "ignore") | {
|
|
2517
|
-
betweenItems?: ("never" | "always" | "ignore");
|
|
2518
|
-
withinEach?: ("never" | "always" | "ignore");
|
|
2519
|
-
});
|
|
2520
|
-
});
|
|
2521
|
-
groupSingleLineProperties?: boolean;
|
|
2522
|
-
})
|
|
2523
|
-
];
|
|
2524
|
-
type VuePreferTrueAttributeShorthand = [] | [("always" | "never")];
|
|
2525
|
-
type VuePropNameCasing = [] | [("camelCase" | "snake_case")];
|
|
2526
|
-
type VueQuoteProps = ([] | [("always" | "as-needed" | "consistent" | "consistent-as-needed")] | [] | [("always" | "as-needed" | "consistent" | "consistent-as-needed")] | [
|
|
2527
|
-
("always" | "as-needed" | "consistent" | "consistent-as-needed"),
|
|
2528
|
-
{
|
|
2529
|
-
keywords?: boolean;
|
|
2530
|
-
unnecessary?: boolean;
|
|
2531
|
-
numbers?: boolean;
|
|
2532
|
-
}
|
|
2533
|
-
]);
|
|
2534
|
-
type VueRequireDirectExport = [] | [
|
|
2535
|
-
{
|
|
2536
|
-
disallowFunctionalComponentFunction?: boolean;
|
|
2537
|
-
}
|
|
2538
|
-
];
|
|
2539
|
-
type VueRequireExplicitEmits = [] | [
|
|
2540
|
-
{
|
|
2541
|
-
allowProps?: boolean;
|
|
2542
|
-
}
|
|
2543
|
-
];
|
|
2544
|
-
type VueRequireMacroVariableName = [] | [
|
|
2545
|
-
{
|
|
2546
|
-
defineProps?: string;
|
|
2547
|
-
defineEmits?: string;
|
|
2548
|
-
defineSlots?: string;
|
|
2549
|
-
useSlots?: string;
|
|
2550
|
-
useAttrs?: string;
|
|
2551
|
-
}
|
|
2552
|
-
];
|
|
2553
|
-
type VueRequirePropComment = [] | [
|
|
2554
|
-
{
|
|
2555
|
-
type?: ("JSDoc" | "line" | "block" | "any");
|
|
2556
|
-
}
|
|
2557
|
-
];
|
|
2558
|
-
type VueReturnInComputedProperty = [] | [
|
|
2559
|
-
{
|
|
2560
|
-
treatUndefinedAsUnspecified?: boolean;
|
|
2561
|
-
}
|
|
2562
|
-
];
|
|
2563
|
-
type VueScriptIndent = [] | [(number | "tab")] | [
|
|
2564
|
-
(number | "tab"),
|
|
2565
|
-
{
|
|
2566
|
-
baseIndent?: number;
|
|
2567
|
-
switchCase?: number;
|
|
2568
|
-
ignores?: (string & {
|
|
2569
|
-
[k: string]: unknown | undefined;
|
|
2570
|
-
} & {
|
|
2571
|
-
[k: string]: unknown | undefined;
|
|
2572
|
-
})[];
|
|
2573
|
-
}
|
|
2574
|
-
];
|
|
2575
|
-
type VueSinglelineHtmlElementContentNewline = [] | [
|
|
2576
|
-
{
|
|
2577
|
-
ignoreWhenNoAttributes?: boolean;
|
|
2578
|
-
ignoreWhenEmpty?: boolean;
|
|
2579
|
-
ignores?: string[];
|
|
2580
|
-
externalIgnores?: string[];
|
|
2581
|
-
}
|
|
2582
|
-
];
|
|
2583
|
-
type VueSortKeys = [] | [("asc" | "desc")] | [
|
|
2584
|
-
("asc" | "desc"),
|
|
2585
|
-
{
|
|
2586
|
-
caseSensitive?: boolean;
|
|
2587
|
-
ignoreChildrenOf?: unknown[];
|
|
2588
|
-
ignoreGrandchildrenOf?: unknown[];
|
|
2589
|
-
minKeys?: number;
|
|
2590
|
-
natural?: boolean;
|
|
2591
|
-
runOutsideVue?: boolean;
|
|
2592
|
-
}
|
|
2593
|
-
];
|
|
2594
|
-
type VueSpaceInParens = [] | [("always" | "never")] | [
|
|
2595
|
-
("always" | "never"),
|
|
2596
|
-
{
|
|
2597
|
-
exceptions?: ("{}" | "[]" | "()" | "empty")[];
|
|
2598
|
-
}
|
|
2599
|
-
];
|
|
2600
|
-
type VueSpaceInfixOps = [] | [
|
|
2601
|
-
{
|
|
2602
|
-
int32Hint?: boolean;
|
|
2603
|
-
}
|
|
2604
|
-
];
|
|
2605
|
-
type VueSpaceUnaryOps = [] | [
|
|
2606
|
-
{
|
|
2607
|
-
words?: boolean;
|
|
2608
|
-
nonwords?: boolean;
|
|
2609
|
-
overrides?: {
|
|
2610
|
-
[k: string]: boolean | undefined;
|
|
2611
|
-
};
|
|
2612
|
-
}
|
|
2613
|
-
];
|
|
2614
|
-
type VueTemplateCurlySpacing = [] | [("always" | "never")];
|
|
2615
|
-
type VueThisInTemplate = [] | [("always" | "never")];
|
|
2616
|
-
type VueVBindStyle = [] | [("shorthand" | "longform")] | [
|
|
2617
|
-
("shorthand" | "longform"),
|
|
2618
|
-
{
|
|
2619
|
-
sameNameShorthand?: ("always" | "never" | "ignore");
|
|
2620
|
-
}
|
|
2621
|
-
];
|
|
2622
|
-
type VueVForDelimiterStyle = [] | [("in" | "of")];
|
|
2623
|
-
type VueVOnEventHyphenation = [] | [("always" | "never")] | [
|
|
2624
|
-
("always" | "never"),
|
|
2625
|
-
{
|
|
2626
|
-
autofix?: boolean;
|
|
2627
|
-
ignore?: (string & {
|
|
2628
|
-
[k: string]: unknown | undefined;
|
|
2629
|
-
} & {
|
|
2630
|
-
[k: string]: unknown | undefined;
|
|
2631
|
-
})[];
|
|
2632
|
-
}
|
|
2633
|
-
];
|
|
2634
|
-
type VueVOnFunctionCall = [] | [("always" | "never")] | [
|
|
2635
|
-
("always" | "never"),
|
|
2636
|
-
{
|
|
2637
|
-
ignoreIncludesComment?: boolean;
|
|
2638
|
-
}
|
|
2639
|
-
];
|
|
2640
|
-
type VueVOnHandlerStyle = [] | [(("inline" | "inline-function") | ["method", ("inline" | "inline-function")])] | [
|
|
2641
|
-
(("inline" | "inline-function") | ["method", ("inline" | "inline-function")]),
|
|
2642
|
-
{
|
|
2643
|
-
ignoreIncludesComment?: boolean;
|
|
2644
|
-
}
|
|
2645
|
-
];
|
|
2646
|
-
type VueVOnStyle = [] | [("shorthand" | "longform")];
|
|
2647
|
-
type VueVSlotStyle = [] | [
|
|
2648
|
-
(("shorthand" | "longform") | {
|
|
2649
|
-
atComponent?: ("shorthand" | "longform" | "v-slot");
|
|
2650
|
-
default?: ("shorthand" | "longform" | "v-slot");
|
|
2651
|
-
named?: ("shorthand" | "longform");
|
|
2652
|
-
})
|
|
2653
|
-
];
|
|
2654
|
-
type VueValidVOn = [] | [
|
|
2655
|
-
{
|
|
2656
|
-
modifiers?: unknown[];
|
|
2657
|
-
}
|
|
2658
|
-
];
|
|
2659
|
-
type VueValidVSlot = [] | [
|
|
2660
|
-
{
|
|
2661
|
-
allowModifiers?: boolean;
|
|
2662
|
-
}
|
|
2663
|
-
];
|
|
2664
|
-
type VuejsAccessibilityAltText = [] | [
|
|
2665
|
-
{
|
|
2666
|
-
elements?: string[];
|
|
2667
|
-
img?: string[];
|
|
2668
|
-
object?: string[];
|
|
2669
|
-
area?: string[];
|
|
2670
|
-
"input[type=\"image\"]"?: string[];
|
|
2671
|
-
[k: string]: unknown | undefined;
|
|
2672
|
-
}
|
|
2673
|
-
];
|
|
2674
|
-
type VuejsAccessibilityAnchorHasContent = [] | [
|
|
2675
|
-
{
|
|
2676
|
-
components?: string[];
|
|
2677
|
-
accessibleChildren?: string[];
|
|
2678
|
-
accessibleDirectives?: string[];
|
|
2679
|
-
[k: string]: unknown | undefined;
|
|
2680
|
-
}
|
|
2681
|
-
];
|
|
2682
|
-
type VuejsAccessibilityAriaRole = [] | [
|
|
2683
|
-
{
|
|
2684
|
-
ignoreNonDOM?: boolean;
|
|
2685
|
-
}
|
|
2686
|
-
];
|
|
2687
|
-
type VuejsAccessibilityFormControlHasLabel = [] | [
|
|
2688
|
-
{
|
|
2689
|
-
labelComponents?: string[];
|
|
2690
|
-
controlComponents?: string[];
|
|
2691
|
-
[k: string]: unknown | undefined;
|
|
2692
|
-
}
|
|
2693
|
-
];
|
|
2694
|
-
type VuejsAccessibilityHeadingHasContent = [] | [
|
|
2695
|
-
{
|
|
2696
|
-
components?: string[];
|
|
2697
|
-
accessibleChildren?: string[];
|
|
2698
|
-
accessibleDirectives?: string[];
|
|
2699
|
-
[k: string]: unknown | undefined;
|
|
2700
|
-
}
|
|
2701
|
-
];
|
|
2702
|
-
type VuejsAccessibilityInteractiveSupportsFocus = [] | [
|
|
2703
|
-
{
|
|
2704
|
-
tabbable?: ("button" | "checkbox" | "columnheader" | "combobox" | "grid" | "gridcell" | "link" | "listbox" | "menu" | "menubar" | "menuitem" | "menuitemcheckbox" | "menuitemradio" | "option" | "progressbar" | "radio" | "radiogroup" | "row" | "rowheader" | "scrollbar" | "searchbox" | "slider" | "spinbutton" | "switch" | "tab" | "tablist" | "textbox" | "tree" | "treegrid" | "treeitem" | "doc-backlink" | "doc-biblioref" | "doc-glossref" | "doc-noteref")[];
|
|
2705
|
-
[k: string]: unknown | undefined;
|
|
2706
|
-
}
|
|
2707
|
-
];
|
|
2708
|
-
type VuejsAccessibilityLabelHasFor = [] | [
|
|
2709
|
-
{
|
|
2710
|
-
components?: string[];
|
|
2711
|
-
controlComponents?: string[];
|
|
2712
|
-
required?: (("nesting" | "id") | {
|
|
2713
|
-
some: ("nesting" | "id")[];
|
|
2714
|
-
[k: string]: unknown | undefined;
|
|
2715
|
-
} | {
|
|
2716
|
-
every: ("nesting" | "id")[];
|
|
2717
|
-
[k: string]: unknown | undefined;
|
|
2718
|
-
});
|
|
2719
|
-
allowChildren?: boolean;
|
|
2720
|
-
[k: string]: unknown | undefined;
|
|
2721
|
-
}
|
|
2722
|
-
];
|
|
2723
|
-
type VuejsAccessibilityMediaHasCaption = [] | [
|
|
2724
|
-
{
|
|
2725
|
-
audio?: string[];
|
|
2726
|
-
track?: string[];
|
|
2727
|
-
video?: string[];
|
|
2728
|
-
[k: string]: unknown | undefined;
|
|
2729
|
-
}
|
|
2730
|
-
];
|
|
2731
|
-
type VuejsAccessibilityNoAutofocus = [] | [
|
|
2732
|
-
{
|
|
2733
|
-
ignoreNonDOM?: boolean;
|
|
2734
|
-
}
|
|
2735
|
-
];
|
|
2736
|
-
type VuejsAccessibilityNoDistractingElements = [] | [
|
|
2737
|
-
{
|
|
2738
|
-
[k: string]: unknown | undefined;
|
|
2739
|
-
}
|
|
2740
|
-
];
|
|
2741
|
-
type VuejsAccessibilityNoRedundantRoles = [] | [
|
|
2742
|
-
{
|
|
2743
|
-
[k: string]: string[] | undefined;
|
|
2744
|
-
}
|
|
2745
|
-
];
|
|
2746
|
-
export {};
|