you-dont-need / You-Dont-Need-Lodash-Underscore

List of JavaScript methods which you can use natively + ESLint Plugin
MIT License
18.58k stars 813 forks source link

Support eslint flat config #396

Open peachest opened 3 months ago

peachest commented 3 months ago

Currently this project is not support eslint's new flat config feature. Is there any plan?

KristjanTammekivi commented 2 weeks ago

As a temporary solution the following seems to work:

import youDontNeedLodashUnderscorePlugin from 'eslint-plugin-you-dont-need-lodash-underscore';
import { fixupPluginRules } from '@eslint/compat';
        ...
        plugins: {
            'you-dont-need-lodash-underscore': fixupPluginRules(youDontNeedLodashUnderscorePlugin)
        },
        ...