From 279ccf078fc8a02cae1a47d5cdb61bea67f0e4b5 Mon Sep 17 00:00:00 2001 From: Jesse Wierzbinski Date: Thu, 13 Jun 2024 22:04:22 -1000 Subject: [PATCH] chore: :rotating_light: Disable linter cognitive complexity by default --- biome.json | 3 +++ 1 file changed, 3 insertions(+) diff --git a/biome.json b/biome.json index 510eb9f5..20aaf15b 100644 --- a/biome.json +++ b/biome.json @@ -11,6 +11,9 @@ "correctness": { "noNodejsModules": "off" }, + "complexity": { + "noExcessiveCognitiveComplexity": "off" + }, "style": { "noDefaultExport": "off", "noParameterProperties": "off",