79633992

Date: 2025-05-22 14:49:38
Score: 0.5
Natty:
Report link

If you use eslint flat config file, you can use the "ignores" property in eslint.config.js file.

e.g.)

// eslint.config.mjs
export default [
    {
        ignores: ['src/generated'],
    },
];

https://eslint.org/docs/latest/use/configure/migration-guide#ignoring-files

Reasons:
  • Whitelisted phrase (-1.5): you can use
  • Probably link only (1):
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: JaeHye0k