You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
What does the rule currently do for this code? It flags that the defaultValue prop is not hyphenated (should be default-value), but it does not flag the selectedItem prop.
What will the rule do after it's changed? In addition to complaining that defaultValue should be hyphenated (default-value), it will also complain that selectedItem should be hyphenated (v-model:selected-item)
Additional context
If prop names should be hyphenated, then they should always be hyphenated, even when used with v-model.
The text was updated successfully, but these errors were encountered:
It's analogous to #2439 but it doesn't seem to be a duplicate? It's a similar issue, but in a different rule, and this aspect of it is not described in #2439 at all
What rule do you want to change? attribute-hyphenation
Does this change cause the rule to produce more or fewer warnings? More
How will the change be implemented? (New option, new default behavior, etc.)? New default behavior
Please provide some example code that this change will affect:
What does the rule currently do for this code? It flags that the
defaultValue
prop is not hyphenated (should bedefault-value
), but it does not flag theselectedItem
prop.What will the rule do after it's changed? In addition to complaining that
defaultValue
should be hyphenated (default-value
), it will also complain thatselectedItem
should be hyphenated (v-model:selected-item
)Additional context
If prop names should be hyphenated, then they should always be hyphenated, even when used with
v-model
.The text was updated successfully, but these errors were encountered: