From 5503ff27e78630eb0396426b2b2dbbfa1e1a78db Mon Sep 17 00:00:00 2001 From: Jesse Wierzbinski Date: Tue, 3 Dec 2024 14:17:36 +0100 Subject: [PATCH] chore: :fire: Clean up Biome config --- biome.json | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/biome.json b/biome.json index 38cc119..1115ca8 100644 --- a/biome.json +++ b/biome.json @@ -1,8 +1,7 @@ { "$schema": "https://biomejs.dev/schemas/1.9.4/schema.json", "organizeImports": { - "enabled": true, - "ignore": ["node_modules/**/*", "dist/**/*", ".output", ".nuxt"] + "enabled": true }, "linter": { "enabled": true, @@ -68,13 +67,14 @@ "noDuplicateElseIf": "error", "noCommonJs": "error" } - }, - "ignore": ["node_modules/**/*", "dist/**/*", ".output", ".nuxt"] + } }, "formatter": { "enabled": true, "indentStyle": "space", - "indentWidth": 4, + "indentWidth": 4 + }, + "files": { "ignore": ["node_modules/**/*", "dist/**/*", ".output", ".nuxt"] } }