From 657b9a4badc97c62bb166bdd838d5bd600477176 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Th=C3=A9o=20LUDWIG?= Date: Sat, 22 Feb 2025 23:43:23 +0100 Subject: [PATCH] feat: add `no-extra-boolean-cast` BREAKING CHANGE: New rule introduced --- eslint.config.js | 1 + 1 file changed, 1 insertion(+) diff --git a/eslint.config.js b/eslint.config.js index 1c6e48f..dfaf647 100644 --- a/eslint.config.js +++ b/eslint.config.js @@ -133,6 +133,7 @@ export default typescriptESLint.config( "no-caller": "error", "no-delete-var": "error", "no-implicit-coercion": "error", + "no-extra-boolean-cast": ["error", { enforceForInnerExpressions: true }], "no-empty": [ "error", {