Disallow the use of debugger

このページは日本語には対応しておりません。随時翻訳に取り組んでいます。翻訳に関してご質問やご意見ございましたら、お気軽にご連絡ください。

Metadata

ID: javascript-best-practices/no-debugger

Language: JavaScript

Severity: Error

Category: Best Practices

Description

The debugger statement is used to intentionally stop execution and start debugging at the point where the statement appears in the code. While it can be valuable during development and debugging, it can cause unwanted behaviors if it’s present in production code.

Non-Compliant Code Examples

if (foo) debugger

Compliant Code Examples

var test = { debugger: 1 }; test.debugger;
https://static.datadoghq.com/static/images/logos/github_avatar.svg https://static.datadoghq.com/static/images/logos/vscode_avatar.svg jetbrains

Seamless integrations. Try Datadog Code Analysis