Skip to content

Files

Latest commit

 

History

History
24 lines (15 loc) · 652 Bytes

grid-unknown-attributes.md

File metadata and controls

24 lines (15 loc) · 652 Bytes

Pattern: Unknown grid attribute

Issue: -

Description

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>

Further Reading