From 5f158098c0e844628c88c195f269d65bbe35e964 Mon Sep 17 00:00:00 2001 From: camc314 <18101008+camc314@users.noreply.github.com> Date: Wed, 7 May 2025 15:50:38 +0000 Subject: [PATCH] docs(linter): improve docs for jsdoc/require-property (#10705) closes #10252 --- crates/oxc_linter/src/rules/jsdoc/require_property.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/crates/oxc_linter/src/rules/jsdoc/require_property.rs b/crates/oxc_linter/src/rules/jsdoc/require_property.rs index 94ff023394463..11840a041882c 100644 --- a/crates/oxc_linter/src/rules/jsdoc/require_property.rs +++ b/crates/oxc_linter/src/rules/jsdoc/require_property.rs @@ -25,6 +25,8 @@ declare_oxc_lint!( /// Requires that all `@typedef` and `@namespace` tags have `@property` tags /// when their type is a plain `object`, `Object`, or `PlainObject`. /// + /// Note: this rule can be configured via [jsdoc settings](https://oxc.rs/docs/guide/usage/linter/config-file-reference.html#settings) option. + /// /// ### Why is this bad? /// /// Object type should have properties defined.