-
-
Notifications
You must be signed in to change notification settings - Fork 26
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feature(rules): Eslint 9 and flat config support #98
base: master
Are you sure you want to change the base?
Conversation
@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 install
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 OK, then. I'll submit another PR to update the documentation. |
@corbinu @johnleider I have created a PR #101 for documentation update. Please check it out. |
Updates to eslint 9 and the new flat file config system
Resolves #93