From 4bd1af1c02f14ffe52275772cef54036b124b1db Mon Sep 17 00:00:00 2001 From: Yagiz Nizipli Date: Tue, 2 Jan 2024 19:52:38 -0500 Subject: [PATCH] build: enable biome performance rules (#10027) Disabled `noDelete` to avoid a huge change log. We can enable it gradually. --- biome.json | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/biome.json b/biome.json index 4ca244f90d3c..e4601d14da3c 100644 --- a/biome.json +++ b/biome.json @@ -25,7 +25,9 @@ "noUnusedImports": "error" }, "performance": { - "noAccumulatingSpread": "error" + "all": true, + "noAccumulatingSpread": "error", + "noDelete": "off" } }, "ignore": [".vscode/*", "**/*.json"]