eslint-plugin-vuetify (WIP)
Built for https://github.com/vuetifyjs/vuetify/pull/7327, requires vuetify >=2.0.0-beta.9
All you need to care about for now is
$ yarn add -D eslint-plugin-vuetify
$ npm install -D eslint-plugin-vuetify
module.exports = {
plugins: [
'vuetify'
],
rules: {
'vuetify/no-deprecated-classes': 'error'
}
}
NOTE This plugin does not affect pug templates due to a limitation in vue-eslint-parser. If there's demand for it I'll make one to convert pug to html too.
If you want to update to the new grid system too then add
'vuetify/grid-unknown-attributes': 'error',
'vuetify/no-legacy-grid': 'error',
to your rules.