Say I want to use this rule:
https://eslint.org/docs/rules/no-debugger
however, I have about 15 files where I want to keep debugger; statements.
Is there something I can add at the top of the .ts/.js files, that can tell ESLint to ignore the no-debugger
rule for this particular file?
You can also disable ESLint in the same line:
debugger; // eslint-disable-line no-debugger