noDebugger
Diagnostic Category: lint/suspicious/noDebugger
Since: v1.0.0
Sources:
- Same as: 
no-debugger 
Description
Section titled “Description”Disallow the use of debugger
Examples
Section titled “Examples”Invalid
Section titled “Invalid”debugger;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;
      │ ---------
const test = { debugger: 1 };test.debugger;How to configure
Section titled “How to configure”{  "linter": {    "rules": {      "suspicious": {        "noDebugger": "error"      }    }  }}