diff --git a/crates/oxc_linter/src/rules/eslint/no_proto.rs b/crates/oxc_linter/src/rules/eslint/no_proto.rs index 891041a41a83c..b91e62c7ca618 100644 --- a/crates/oxc_linter/src/rules/eslint/no_proto.rs +++ b/crates/oxc_linter/src/rules/eslint/no_proto.rs @@ -16,7 +16,7 @@ pub struct NoProto; declare_oxc_lint!( /// ### What it does /// - /// Disallow the use of the `__proto__` property + /// Disallow the use of the `__proto__` property. /// /// ### Why is this bad? /// @@ -24,6 +24,9 @@ declare_oxc_lint!( /// shouldn’t be used in new code. Use `Object.getPrototypeOf` and /// `Object.setPrototypeOf` instead. /// + /// For more information, see + /// [the MDN documentation](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Object/proto). + /// /// ### Examples /// /// Examples of **incorrect** code for this rule: