-
-
Notifications
You must be signed in to change notification settings - Fork 4.7k
Open
Labels
area:binary expressionsstatus:needs discussionIssues needing discussion and a decision to be made before action can be takenIssues needing discussion and a decision to be made before action can be taken
Description
Before:
const foo = (a && b) || c || d;After:
const foo = a && b || c || d;The same goes for arithmetic and bitwise operators.
Relevant ESLint rule: http://eslint.org/docs/rules/no-mixed-operators.
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
area:binary expressionsstatus:needs discussionIssues needing discussion and a decision to be made before action can be takenIssues needing discussion and a decision to be made before action can be taken