From c7eb49be194dd12634c2a7a62550ea15f84347b4 Mon Sep 17 00:00:00 2001 From: Remco Haszing Date: Thu, 21 Nov 2024 15:08:54 +0100 Subject: [PATCH] Disable biome rule lint/style/noNonNullAssertion There are good reasons for using non-null assertions. --- biome.json | 1 + 1 file changed, 1 insertion(+) diff --git a/biome.json b/biome.json index 8e7901d..c9d49cb 100644 --- a/biome.json +++ b/biome.json @@ -29,6 +29,7 @@ "noForEach": "warn" }, "style": { + "noNonNullAssertion": "off", "noParameterAssign": "warn", "noUnusedTemplateLiteral": "off" }