From 1103224e9dbcb5e33fa23802e8a81c369c3c01a6 Mon Sep 17 00:00:00 2001 From: Liam DeBeasi Date: Fri, 16 Sep 2022 15:07:21 -0500 Subject: [PATCH] lint(eslint): strict boolean expressions now error (#25961) --- core/.eslintrc.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/.eslintrc.js b/core/.eslintrc.js index 6d5c965e58..5b1d2de926 100644 --- a/core/.eslintrc.js +++ b/core/.eslintrc.js @@ -32,7 +32,7 @@ module.exports = { "@typescript-eslint/no-non-null-assertion": "off", "no-case-declarations": "off", "@typescript-eslint/strict-boolean-expressions": [ - "warn", + "error", { "allowNullableBoolean": true, "allowNullableString": true,