eslint-plugin-vuetify
eslint-plugin-vuetify copied to clipboard
feature(rules): Eslint 9 and flat config support
Updates to eslint 9 and the new flat file config system
Resolves #93
@corbinu I think it would be nice to add some docs / an example on how to use the new flat config. You should probably adopt the README a bit
This PR appears to be working and has been sitting here for awhile. Any chance of getting it merged even as a beta? I'm currently working on updating a Vue 2 project to Vue 3 that's already on eslint 9, and have had to manually make some of these changes to get it working even in compat mode.
@KaelWD @johnleider could you please apply necessary steps to publish this as a beta version? So we the community can test it and bring it to some sort of release?
This tool might be very handy but is not usable for eslint 9 users. With a beta we could at least test it and if it works we could migrate faster, if not, no problem its beta. What's your opinion?
FYI: I'm using this PR code in my project, applying it via @nuxt/eslint
as follows.
install
yarn add https://github.com/corbinu/eslint-plugin-vuetify/
eslint.config.mjs
import vuetify from "eslint-plugin-vuetify/src/index.js";
import withNuxt from "./.nuxt/eslint.config.mjs";
export default withNuxt(
{
files: ['**/*.vue'],
plugins: { vuetify },
rules: {
...vuetify.configs.base.rules,
'vuetify/no-deprecated-classes': '<SOME-VALUE>',
},
},
);
any updates when this will be merged? thanks for the updates and work
Hello,
I am not going to be moving forward with using this plugin so if anybody else wants to take over the PR they are welcome to.
Corbin Uselton
@corbinu I can take over, but what are the remaining tasks?
@shimizukawa Here is the one request I was given. Sorry that I can't do this right now.
@corbinu I think it would be nice to add some docs / an example on how to use the new flat config. You should probably adopt the README a bit
@corbinu OK, then. I'll submit another PR to update the documentation. @johnleider I think this PR can be merged without waiting for the documentation to be updated.
@corbinu @johnleider I have created a PR #101 for documentation update. Please check it out.