From f123e19064a081344ab22ff3d930d70a361e52a9 Mon Sep 17 00:00:00 2001 From: jkomyno Date: Tue, 1 Oct 2024 20:54:45 +0200 Subject: [PATCH] chore(scaffolding): update biome rules --- biome.jsonc | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/biome.jsonc b/biome.jsonc index f5be5b5..85199f3 100644 --- a/biome.jsonc +++ b/biome.jsonc @@ -45,7 +45,9 @@ "noExtraBooleanCast": "error", "noMultipleSpacesInRegularExpressionLiterals": "error", "noUselessCatch": "error", - "noWith": "error" + "noWith": "error", + "noStaticOnlyClass": "off", + "noBannedTypes": "off" }, "nursery": { "useSortedClasses": "error" @@ -74,7 +76,7 @@ "noUnsafeFinally": "error", "noUnsafeOptionalChaining": "error", "noUnusedLabels": "error", - "noUnusedVariables": "error", + "noUnusedVariables": "warn", "useIsNan": "error", "useValidForDirection": "error", "useYield": "error" @@ -92,6 +94,7 @@ "noDuplicateObjectKeys": "error", "noDuplicateParameters": "error", "noEmptyBlockStatements": "error", + "noExplicitAny": "off", "noFallthroughSwitchClause": "error", "noFunctionAssign": "error", "noGlobalAssign": "error",