diff --git a/docs/rules/no-restricted-globals.md b/docs/rules/no-restricted-globals.md index 3d4c9a6c08c..751f5d66de6 100644 --- a/docs/rules/no-restricted-globals.md +++ b/docs/rules/no-restricted-globals.md @@ -44,3 +44,8 @@ import event from "event-module"; var event = 1; ``` + +## Related Rules + +* [no-restricted-properties](no-restricted-properties.md) +* [no-restricted-syntax](no-restricted-syntax.md) diff --git a/docs/rules/no-restricted-properties.md b/docs/rules/no-restricted-properties.md index c4994318159..e1824d57925 100644 --- a/docs/rules/no-restricted-properties.md +++ b/docs/rules/no-restricted-properties.md @@ -121,4 +121,5 @@ If you don't have any object/property combinations to restrict, you should not u ## Related Rules +* [no-restricted-globals](no-restricted-globals.md) * [no-restricted-syntax](no-restricted-syntax.md) diff --git a/docs/rules/no-restricted-syntax.md b/docs/rules/no-restricted-syntax.md index 716c69fda53..74f35628ff6 100644 --- a/docs/rules/no-restricted-syntax.md +++ b/docs/rules/no-restricted-syntax.md @@ -51,3 +51,5 @@ If you don't want to restrict your code from using any JavaScript features or sy * [no-alert](no-alert.md) * [no-console](no-console.md) * [no-debugger](no-debugger.md) +* [no-restricted-properties](no-restricted-properties.md) +* [no-restricted-syntax](no-restricted-syntax.md)