Skip to content

Latest commit

 

History

History
21 lines (13 loc) · 370 Bytes

no-deprecated-props.md

File metadata and controls

21 lines (13 loc) · 370 Bytes

Prevent the use of removed and deprecated props (no-deprecated-props)

🔧 This rule is partially fixable with eslint --fix

Rule Details

Examples of incorrect code for this rule:

<v-btn outlined />

Examples of correct code for this rule:

<v-btn variant="outlined" />

Options

This rule has no configuration options.