From c22bfe5853bfc7750db79d5cb4eca019bfa10d76 Mon Sep 17 00:00:00 2001 From: Mirko Mollik Date: Wed, 21 Feb 2024 22:28:18 +0100 Subject: [PATCH] fix: allow any as a biome rule Signed-off-by: Mirko Mollik --- biome.json | 26 ++++++++++++++++---------- 1 file changed, 16 insertions(+), 10 deletions(-) diff --git a/biome.json b/biome.json index f8702e4..3dfd24a 100644 --- a/biome.json +++ b/biome.json @@ -1,12 +1,18 @@ { - "$schema": "https://biomejs.dev/schemas/1.5.3/schema.json", - "organizeImports": { - "enabled": true - }, - "linter": { - "enabled": true, - "rules": { - "recommended": true - } - } + "$schema": "https://biomejs.dev/schemas/1.5.3/schema.json", + "organizeImports": { + "enabled": true + }, + "files": { + "ignore": ["**/dist/**"] + }, + "linter": { + "enabled": true, + "rules": { + "recommended": true, + "suspicious": { + "noExplicitAny": "off" + } + } + } }