Skip to content

Latest commit

 

History

History
23 lines (14 loc) · 525 Bytes

File metadata and controls

23 lines (14 loc) · 525 Bytes

Prevent the use of deprecated import paths (no-deprecated-imports)

🔧 This rule is fixable with eslint --fix

Rule Details

Imports from deprecated paths (e.g. vuetify/lib/util/colors) are reported and fixed to the current path (vuetify/util/colors).

Examples of incorrect code for this rule:

import { red } from 'vuetify/lib/util/colors'

Examples of correct code for this rule:

import { red } from 'vuetify/util/colors'

Options

This rule has no configuration options.