Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Docs: Fix broken links in no-mixed-operators #6372

Merged
merged 1 commit into from Jun 11, 2016
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
8 changes: 3 additions & 5 deletions docs/rules/no-mixed-operators.md
Expand Up @@ -13,8 +13,8 @@ var foo = a && (b || c || d); /*GOOD*/

This rule checks `BinaryExpression` and `LogicalExpression`.

This rule may conflict with [no-extra-parens] rule.
If you use both this and [no-extra-parens] rule together, you need to use the `nestedBinaryExpressions` option of [no-extra-parens] rule.
This rule may conflict with [no-extra-parens](no-extra-parens.md) rule.
If you use both this and [no-extra-parens](no-extra-parens.md) rule together, you need to use the `nestedBinaryExpressions` option of [no-extra-parens](no-extra-parens.md) rule.

Examples of **incorrect** code for this rule:

Expand Down Expand Up @@ -133,6 +133,4 @@ If you don't want to be notified about mixed operators, then it's safe to disabl

## Related Rules

* [no-extra-parens]

[no-extra-parens]: no-extra-parens.md
* [no-extra-parens](no-extra-parens.md)