From 5807eae9a2085d6b8801c71d8e61eccdea59ecd6 Mon Sep 17 00:00:00 2001 From: "Kamat, Trivikram" <16024985+trivikr@users.noreply.github.com> Date: Sat, 27 Jul 2024 21:11:53 -0700 Subject: [PATCH] Ignore list from .gitignore in biome --- biome.json | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/biome.json b/biome.json index 8eea87876..06a31aa1f 100644 --- a/biome.json +++ b/biome.json @@ -30,8 +30,12 @@ "suspicious": { "noEmptyBlockStatements": "error" } - }, - "ignore": ["**/__fixtures__"] + } }, - "javascript": { "formatter": { "trailingCommas": "es5" } } + "javascript": { "formatter": { "trailingCommas": "es5" } }, + "vcs": { + "enabled": true, + "clientKind": "git", + "useIgnoreFile": true + } }