From 33a80dd5368028cb55ab68ea940c176790595806 Mon Sep 17 00:00:00 2001 From: Andreas Richter <708186+richtera@users.noreply.github.com> Date: Thu, 18 Apr 2024 07:34:46 -0400 Subject: [PATCH] fix: Ignore formatting in package.json inside of biome --- biome.json | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/biome.json b/biome.json index 7d2d9164..3c8c3ddd 100644 --- a/biome.json +++ b/biome.json @@ -30,6 +30,13 @@ "enabled": false }, "files": { - "ignore": ["node_modules", ".nyc_output", "build", "coverage", ".vscode"] + "ignore": [ + "node_modules", + ".nyc_output", + "build", + "coverage", + ".vscode", + "package.json" + ] } }