From 38011fa7fa2b5beb1df6a2ca990d82adfc4078ab Mon Sep 17 00:00:00 2001 From: Tim Schaub Date: Sun, 12 Nov 2023 17:34:07 -0700 Subject: [PATCH] Add no-constant-binary-expression rule --- index.js | 1 + 1 file changed, 1 insertion(+) diff --git a/index.js b/index.js index d123b6c..ef22457 100644 --- a/index.js +++ b/index.js @@ -53,6 +53,7 @@ module.exports = { 'no-cond-assign': 'error', 'no-console': 'error', 'no-const-assign': 'error', + 'no-constant-binary-expression': 'error', 'no-control-regex': 'error', 'no-debugger': 'error', 'no-delete-var': 'error',