noDebugger
Diagnostic Category: lint/suspicious/noDebugger
Since: v1.0.0
Sources:
- Same as:
no-debugger
Description
Section titled DescriptionDisallow the use of debugger
Examples
Section titled ExamplesInvalid
Section titled Invaliddebugger;
code-block.js:1:1 lint/suspicious/noDebugger FIXABLE ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
✖ This is an unexpected use of the debugger statement.
> 1 │ debugger;
│ ^^^^^^^^^
2 │
ℹ Unsafe fix: Remove debugger statement
1 │ debugger;
│ ---------
Valid
Section titled Validconst test = { debugger: 1 };test.debugger;
How to configure
Section titled How to configure{ "linter": { "rules": { "suspicious": { "noDebugger": "error" } } }}