We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 16541de commit db6afb9Copy full SHA for db6afb9
1 file changed
crates/oxc_linter/src/rules/eslint/no_debugger.rs
@@ -24,13 +24,24 @@ declare_oxc_lint!(
24
///
25
/// ### Example
26
27
+ /// Examples of **incorrect** code for this rule:
28
+ ///
29
/// ```javascript
30
/// async function main() {
31
/// const data = await getData();
32
/// const result = complexCalculation(data);
33
/// debugger;
34
/// }
35
/// ```
36
37
+ /// Examples of **correct** code for this rule:
38
+ /// ```javascript
39
+ /// async function main() {
40
+ /// const data = await getData();
41
+ /// const result = complexCalculation(data);
42
+ /// }
43
+ /// ```
44
45
NoDebugger,
46
eslint,
47
correctness,
0 commit comments