Skip to content

Commit

Permalink
fix: group &&, || and ?: (#152)
Browse files Browse the repository at this point in the history
  • Loading branch information
kecrily committed Jan 12, 2023
1 parent 1b0dc92 commit 44bcb19
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/basic/standard.js
Expand Up @@ -126,7 +126,7 @@ module.exports = {
'no-mixed-operators': ['error', {
groups: [
['==', '!=', '===', '!==', '>', '>=', '<', '<='],
['&&', '||'],
['&&', '||', '?:'],
['in', 'instanceof'],
],
allowSamePrecedence: true,
Expand Down

0 comments on commit 44bcb19

Please sign in to comment.