diff --git a/crates/oxc_linter/src/rules/eslint/no_irregular_whitespace.rs b/crates/oxc_linter/src/rules/eslint/no_irregular_whitespace.rs index 6b407febf536f..15e94c2996c11 100644 --- a/crates/oxc_linter/src/rules/eslint/no_irregular_whitespace.rs +++ b/crates/oxc_linter/src/rules/eslint/no_irregular_whitespace.rs @@ -39,6 +39,7 @@ declare_oxc_lint!( /// function example() { /// var foo = 'bar'; // regular spaces only /// } + /// ``` NoIrregularWhitespace, eslint, correctness diff --git a/crates/oxc_linter/src/rules/eslint/no_plusplus.rs b/crates/oxc_linter/src/rules/eslint/no_plusplus.rs index 812e20e5ea6ff..63673284a69d4 100644 --- a/crates/oxc_linter/src/rules/eslint/no_plusplus.rs +++ b/crates/oxc_linter/src/rules/eslint/no_plusplus.rs @@ -75,6 +75,7 @@ declare_oxc_lint!( /// for (let i = 0; i < l; i += 1) { /// doSomething(i); /// } + /// ``` /// /// ### Options ///