From 57784090557f7d5ce5c1a9b0e907c0eaa2aa7480 Mon Sep 17 00:00:00 2001 From: Volnei Munhoz Date: Wed, 14 Jan 2026 15:46:50 -0300 Subject: [PATCH] chore: Biome increase line numbers per function (#26846) --- biome.json | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/biome.json b/biome.json index 37d050265b..bb4cf8ec72 100644 --- a/biome.json +++ b/biome.json @@ -124,7 +124,13 @@ "noNestedTernary": "warn" }, "complexity": { - "noExcessiveLinesPerFunction": "warn" + "noExcessiveLinesPerFunction": { + "level": "warn", + "options": { + "maxLines": 100, + "skipBlankLines": true + } + } }, "performance": { "noImgElement": "warn"