Results 105 comments of Alec Mev

A screenshot from my colleague's iTerm2: ![image](https://github.com/user-attachments/assets/0365b79e-9453-497f-bdc9-9de0dcd10857)

Fixed by https://github.com/import-js/eslint-plugin-import/pull/2835?

Thank you for putting effort into this, @Mike-Dax! [I went the `NormalModuleReplacementPlugin` way](https://stackoverflow.com/a/50547650/242684) a couple of years ago, but this is much nicer, of course, since I don't need to...

In the meanwhile, this works: ```ts import { fixupPluginRules } from '@eslint/compat'; import plugin from 'eslint-plugin-no-unsanitized'; const NO_UNSANITIZED_CONFIG = [ { files: [/* ... */], plugins: { 'no-unsanitized': fixupPluginRules(plugin) },...