๐งผ Version upgrade automation eslint plugin
https://github.com/vuetifyjs/eslint-plugin-vuetify.git
This package is for migrating from Vuetify v2 to v3, use eslint-plugin-vuetify@vuetify-2 for v1 to v2.
Support the maintainer of this plugin:
You should have eslint and eslint-plugin-vue set up first.
yarn add eslint-plugin-vuetify -D
# OR
npm install eslint-plugin-vuetify --save-dev
// eslint.config.js
import vue from 'eslint-plugin-vue'
import vuetify from 'eslint-plugin-vuetify'
export default [
...vue.configs['flat/base'],
...vuetify.configs['flat/base'],
]
Eslint 8 can alternatively use the older configuration format:
// .eslintrc.js
module.exports = {
extends: [
'plugin:vue/base',
'plugin:vuetify/base'
]
}
NOTE This plugin does not affect pug templates due to a limitation in vue-eslint-parser. I suggest converting your pug templates to HTML with pug-to-html in order to use this plugin.
These rules will help you avoid deprecated components, props, and classes. They are included in the base preset.
no-deprecated-components])no-deprecated-props])no-deprecated-events])no-deprecated-classes])no-deprecated-colors])no-deprecated-imports])icon-button-variant])These rules are designed to help migrate to the new grid system in Vuetify v2. They are included in the recommended preset.
grid-unknown-attributes])Vuetify is an open source MIT project that has been made possible due to the generous contributions by community backers. If you are interested in supporting this project, please consider:
Copyright (c) 2016-present Vuetify LLC