How to use additional plugins? (eg, Vuetify, SonarJS, etc...) #675
-
I prefer to use antfu's eslint config when possible, but right now I'm migrating Vue/Vuetify 2 apps to Vue/Vuetify 3. Previously, I used the Vuetify eslint plugin, which helped catch a lot of the errors in this process. However, antfu's eslint config doesn't come with the Vuetify plugin, and I can't see an obvious way to add it. I found this issue, which seemed to imply I could simply add
( What is the right way to add a plugin, using this config? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
Answering my own question. Here's how I got it to work: At the top: import { FlatCompat } from '@eslint/eslintrc';
const compat = new FlatCompat(); At the bottom: // Legacy config
...compat.config({
extends: [
'plugin:sonarjs/recommended-legacy',
'plugin:vuetify/recommended',
],
rules: {
'sonarjs/todo-tag': 'warn',
'sonarjs/no-commented-code': 'warn',
},
}),
); I don't know if this is the optimal way to do this, but it seems to work. |
Beta Was this translation helpful? Give feedback.
Answering my own question. Here's how I got it to work:
At the top:
At the bottom:
I don't know if this is the optimal way to do this, but it seems to work.