eslint-plugin-vuetify
eslint-plugin-vuetify copied to clipboard
An eslint plugin for Vuetify
When I try to use the new text prop of `v-btn` (``) it gets converted to ``. The conversion should only occur for `` or ``.
Thanks to [eslint-plugin-vue-pug](https://github.com/rashfael/eslint-plugin-vue-pug), this plugin works for pug templates. I tested eslint configuration: ``` "extends": [ "plugin:vue/vue3-recommended", "plugin:vue-pug/vue3-recommended", "plugin:vuetify/base" ] ``` so the doc should be updated accordingly
Updates to eslint 9 and the new flat file config system Resolves #93
fixes #96
https://github.com/vuetifyjs/eslint-plugin-vuetify/blob/34db77f8ad8fad05c69bef602b8da1d664c72c8b/src/rules/no-deprecated-components.js#L37 https://vuetifyjs.com/en/components/time-pickers/
'subheading' was renamed to 'text-subtitle-1'. Source: https://v2.vuetifyjs.com/en/getting-started/upgrade-guide/#typography
Fixes references to `context` methods that were moved onto the `SourceCode` object and/or renamed in eslint 9.x as explained at https://eslint.org/docs/latest/use/migrate-to-9.0.0#-removed-multiple-context-methods This is the first step in remedying issue https://github.com/vuetifyjs/eslint-plugin-vuetify/issues/93....