Pattern: Unknown grid attribute
Issue: -
Prevents the use of non-prop attributes on v-container
, v-row
, and v-col
. It will not transform legacy grid props on the new components, for that use the no-legacy-grid
rule.
Examples of incorrect code for this rule:
<v-container fill-height></v-container>
Examples of correct code for this rule:
<v-container class="fill-height">
<v-col xs12></v-col>