From 30b43752c2cae861d11c0642baf7a76b1dcc77aa Mon Sep 17 00:00:00 2001 From: 3nprob <3nprob@example.com> Date: Tue, 9 Aug 2022 10:18:46 +0900 Subject: [PATCH] eslint: Enable no-mixed-operators rule --- .eslintrc.js | 1 + 1 file changed, 1 insertion(+) diff --git a/.eslintrc.js b/.eslintrc.js index 007c7bf0d7..f315f41429 100644 --- a/.eslintrc.js +++ b/.eslintrc.js @@ -13,6 +13,7 @@ module.exports = { browser: true, }, rules: { + "no-mixed-operators": 2, "quotes": "off", "indent": "off", "prefer-promise-reject-errors": "off",