Skip to content

How to use additional plugins? (eg, Vuetify, SonarJS, etc...) #675

Closed Answered by phoenix-oes
phoenix-oes asked this question in Q&A
Discussion options

You must be logged in to vote

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.

Replies: 1 comment

Comment options

You must be logged in to vote
0 replies
Answer selected by phoenix-oes
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
1 participant