Skip to content

Files

Latest commit

 

History

History
14 lines (9 loc) · 556 Bytes

no-debugger.md

File metadata and controls

14 lines (9 loc) · 556 Bytes

no-debugger

The {{debugger}} helper is equivalent to a JavaScript debugger statement. This will halt execution if the browser developer tools are open. That is undesirable in a production environment.

This rule forbids the following:

{{debugger}}

References