@@ -38,6 +38,7 @@ import type { KeywordSpacingRule } from './keyword-spacing';
38
38
import type { MatchComponentFileNameRule } from './match-component-file-name' ;
39
39
import type { MaxAttributesPerLineRule } from './max-attributes-per-line' ;
40
40
import type { MaxLenRule } from './max-len' ;
41
+ import type { MultiWordComponentNamesRule } from './multi-word-component-names' ;
41
42
import type { MultilineHtmlElementContentNewlineRule } from './multiline-html-element-content-newline' ;
42
43
import type { MustacheInterpolationSpacingRule } from './mustache-interpolation-spacing' ;
43
44
import type { NamePropertyCasingRule } from './name-property-casing' ;
@@ -46,6 +47,7 @@ import type { NextTickStyleRule } from './next-tick-style';
46
47
import type { NoArrowFunctionsInWatchRule } from './no-arrow-functions-in-watch' ;
47
48
import type { NoAsyncInComputedPropertiesRule } from './no-async-in-computed-properties' ;
48
49
import type { NoBooleanDefaultRule } from './no-boolean-default' ;
50
+ import type { NoComputedPropertiesInDataRule } from './no-computed-properties-in-data' ;
49
51
import type { NoConfusingVForVIfRule } from './no-confusing-v-for-v-if' ;
50
52
import type { NoConstantConditionRule } from './no-constant-condition' ;
51
53
import type { NoCustomModifiersOnVModelRule } from './no-custom-modifiers-on-v-model' ;
@@ -59,6 +61,7 @@ import type { NoDeprecatedFunctionalTemplateRule } from './no-deprecated-functio
59
61
import type { NoDeprecatedHtmlElementIsRule } from './no-deprecated-html-element-is' ;
60
62
import type { NoDeprecatedInlineTemplateRule } from './no-deprecated-inline-template' ;
61
63
import type { NoDeprecatedPropsDefaultThisRule } from './no-deprecated-props-default-this' ;
64
+ import type { NoDeprecatedRouterLinkTagPropRule } from './no-deprecated-router-link-tag-prop' ;
62
65
import type { NoDeprecatedScopeAttributeRule } from './no-deprecated-scope-attribute' ;
63
66
import type { NoDeprecatedSlotAttributeRule } from './no-deprecated-slot-attribute' ;
64
67
import type { NoDeprecatedSlotScopeAttributeRule } from './no-deprecated-slot-scope-attribute' ;
@@ -109,6 +112,7 @@ import type { NoTemplateShadowRule } from './no-template-shadow';
109
112
import type { NoTemplateTargetBlankRule } from './no-template-target-blank' ;
110
113
import type { NoTextareaMustacheRule } from './no-textarea-mustache' ;
111
114
import type { NoThisInBeforeRouteEnterRule } from './no-this-in-before-route-enter' ;
115
+ import type { NoUndefPropertiesRule } from './no-undef-properties' ;
112
116
import type { NoUnregisteredComponentsRule } from './no-unregistered-components' ;
113
117
import type { NoUnsupportedFeaturesRule } from './no-unsupported-features' ;
114
118
import type { NoUnusedComponentsRule } from './no-unused-components' ;
@@ -234,6 +238,7 @@ export type VueRules = ArrayBracketNewlineRule &
234
238
MatchComponentFileNameRule &
235
239
MaxAttributesPerLineRule &
236
240
MaxLenRule &
241
+ MultiWordComponentNamesRule &
237
242
MultilineHtmlElementContentNewlineRule &
238
243
MustacheInterpolationSpacingRule &
239
244
NamePropertyCasingRule &
@@ -242,6 +247,7 @@ export type VueRules = ArrayBracketNewlineRule &
242
247
NoArrowFunctionsInWatchRule &
243
248
NoAsyncInComputedPropertiesRule &
244
249
NoBooleanDefaultRule &
250
+ NoComputedPropertiesInDataRule &
245
251
NoConfusingVForVIfRule &
246
252
NoConstantConditionRule &
247
253
NoCustomModifiersOnVModelRule &
@@ -255,6 +261,7 @@ export type VueRules = ArrayBracketNewlineRule &
255
261
NoDeprecatedHtmlElementIsRule &
256
262
NoDeprecatedInlineTemplateRule &
257
263
NoDeprecatedPropsDefaultThisRule &
264
+ NoDeprecatedRouterLinkTagPropRule &
258
265
NoDeprecatedScopeAttributeRule &
259
266
NoDeprecatedSlotAttributeRule &
260
267
NoDeprecatedSlotScopeAttributeRule &
@@ -305,6 +312,7 @@ export type VueRules = ArrayBracketNewlineRule &
305
312
NoTemplateTargetBlankRule &
306
313
NoTextareaMustacheRule &
307
314
NoThisInBeforeRouteEnterRule &
315
+ NoUndefPropertiesRule &
308
316
NoUnregisteredComponentsRule &
309
317
NoUnsupportedFeaturesRule &
310
318
NoUnusedComponentsRule &
0 commit comments