no-debugger
Configuration
rslint.config.ts
Rule Details
Disallows the use of debugger statements. The debugger statement is used to tell the JavaScript runtime to pause execution and open a debugging session. These statements should be removed before deploying code to production, as they can halt execution and are only useful during development.
Examples of incorrect code for this rule:
Examples of correct code for this rule: