From c7e1a949a28f9ecd4e0413ba202e83bb66ef22e4 Mon Sep 17 00:00:00 2001 From: Mathis Date: Tue, 15 Oct 2024 13:47:02 +0200 Subject: [PATCH] Update file inclusion pattern in biome.json Changed the file inclusion pattern to ensure only TypeScript files in src directories are included. This helps in focusing solely on source files and avoids unintended files from being processed. --- biome.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/biome.json b/biome.json index abcf78a..150e0a7 100644 --- a/biome.json +++ b/biome.json @@ -5,7 +5,7 @@ }, "files": { "include": [ - "./apps/**/*.ts" + "./apps/**/src/**/*.ts" ] }, "vcs": {