From f2121e47d4807c83c2ceef3a1e387a1c27c751c2 Mon Sep 17 00:00:00 2001 From: Deep Singhvi Date: Thu, 29 Feb 2024 13:50:20 -0500 Subject: [PATCH] (chore): disable eslint `@typescript-eslint/no-unnecessary-condition` --- .eslintrc.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.eslintrc.js b/.eslintrc.js index 4021c544376..6957f14abe7 100644 --- a/.eslintrc.js +++ b/.eslintrc.js @@ -117,6 +117,6 @@ module.exports = { "@blueprintjs/html-components": "off", "@typescript-eslint/strict-boolean-expressions": "off", "@typescript-eslint/no-empty-interface": "off", - "no-unused-disable": "off" + "@typescript-eslint/no-unnecessary-condition": "off" } };