From eaa16341cb2af1d48ae33c5cf80b7bdb7cd55e19 Mon Sep 17 00:00:00 2001 From: Alec Larson <1925840+aleclarson@users.noreply.github.com> Date: Fri, 25 Oct 2024 14:54:09 -0400 Subject: [PATCH] chore: tweak biome rules --- biome.json | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/biome.json b/biome.json index 5e9a979..44616a2 100644 --- a/biome.json +++ b/biome.json @@ -1,4 +1,14 @@ { "$schema": "https://biomejs.dev/schemas/1.8.3/schema.json", - "extends": ["@radashi-org/biome-config"] + "extends": ["@radashi-org/biome-config"], + "linter": { + "rules": { + "performance": { + "noDelete": "off" + }, + "style": { + "noUnusedTemplateLiteral": "off" + } + } + } }