Skip to content

Commit

Permalink
Merge pull request #1959 from endojs/explicit-no-self-compare
Browse files Browse the repository at this point in the history
chore(eslint): Make no-self-compare explicit
  • Loading branch information
rekmarks authored Jan 11, 2024
2 parents 54af775 + e47d445 commit 55a2774
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion packages/eslint-plugin/lib/configs/recommended.js
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,8 @@ module.exports = {
},
rules: {
'@endo/assert-fail-as-throw': 'error',
'guard-for-in': 'error',
'@endo/no-nullish-coalescing': 'warn',
'guard-for-in': 'error',
'no-self-compare': 'error',
},
};

0 comments on commit 55a2774

Please sign in to comment.