Skip to content

Commit

Permalink
Docs: Rules restricting globals/properties/syntax are linked together (
Browse files Browse the repository at this point in the history
…#7743)

Rules `no-restricted-globals`, `no-restricted-properties`, and `no-restricted-syntax` link to each other in their Related Rules sections.
  • Loading branch information
platinumazure committed Dec 12, 2016
1 parent df2f115 commit ab246dd
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 0 deletions.
5 changes: 5 additions & 0 deletions docs/rules/no-restricted-globals.md
Expand Up @@ -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)
1 change: 1 addition & 0 deletions docs/rules/no-restricted-properties.md
Expand Up @@ -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)
2 changes: 2 additions & 0 deletions docs/rules/no-restricted-syntax.md
Expand Up @@ -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)

0 comments on commit ab246dd

Please sign in to comment.