From 11ab896128e87ec680524bfc3407f3ee1ef7aaab Mon Sep 17 00:00:00 2001 From: Sirz Benjie <142067137+SirzBenjie@users.noreply.github.com> Date: Fri, 7 Mar 2025 23:04:17 -0600 Subject: [PATCH] Add override for biome's performance lint in tests --- biome.jsonc | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/biome.jsonc b/biome.jsonc index 8f3769826e0..b6a4dffe21c 100644 --- a/biome.jsonc +++ b/biome.jsonc @@ -91,11 +91,13 @@ { "include": ["test/**/*.test.ts"], "javascript": { "globals": [] }, - "linter": { "rules": { - "performance": { - "noDelete": "off" + "linter": { + "rules": { + "performance": { + "noDelete": "off" + } } - } } + } } ] }