diff --git a/docs/rules/forbid-component-props.md b/docs/rules/forbid-component-props.md index 424d880f0b..eb557df8c2 100644 --- a/docs/rules/forbid-component-props.md +++ b/docs/rules/forbid-component-props.md @@ -42,3 +42,8 @@ The following patterns are **not** considered warnings: ### `forbid` An array of strings, with the names of props that are forbidden. The default value of this option is `['className', 'style']`. + + +### Related rules + +- [forbid-dom-props](./forbid-dom-props.md) diff --git a/docs/rules/forbid-dom-props.md b/docs/rules/forbid-dom-props.md index 9453758bc8..8dca2826ae 100644 --- a/docs/rules/forbid-dom-props.md +++ b/docs/rules/forbid-dom-props.md @@ -43,3 +43,8 @@ The following patterns are **not** considered warnings: ### `forbid` An array of strings, with the names of props that are forbidden. The default value of this option `[]`. + + +### Related rules + +- [forbid-component-props](./forbid-component-props.md)