From 5665fcd98f85f7b61ddbd8d1de37c8db79c8faea Mon Sep 17 00:00:00 2001 From: Avnyr Date: Wed, 14 Jan 2026 20:20:14 +0100 Subject: [PATCH] Exclude `.migrations` from file includes in `biome.json` configuration --- backend/biome.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/biome.json b/backend/biome.json index 52001b0..25e82d8 100644 --- a/backend/biome.json +++ b/backend/biome.json @@ -7,7 +7,7 @@ }, "files": { "ignoreUnknown": true, - "includes": ["**", "!node_modules", "!dist", "!build"] + "includes": ["**", "!node_modules", "!dist", "!build", "!.migrations"] }, "formatter": { "enabled": true,