🔧 This rule is fixable with eslint --fix
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'This rule has no configuration options.