From 580a4a43203458f21ba9dd2b1a14d10ac981578f Mon Sep 17 00:00:00 2001 From: Mathis Date: Tue, 23 Apr 2024 13:51:13 +0200 Subject: [PATCH] build: :wrench: biomejs config --- biome.json | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 biome.json diff --git a/biome.json b/biome.json new file mode 100644 index 0000000..018253b --- /dev/null +++ b/biome.json @@ -0,0 +1,24 @@ +{ + "$schema": "https://biomejs.dev/schemas/1.6.4/schema.json", + "organizeImports": { + "enabled": true + }, + "linter": { + "enabled": true, + "rules": { + "recommended": true, + "performance": { + "recommended": true, + "noDelete": "off" + }, + "complexity": { + "useLiteralKeys": "off" + } + } + }, + "formatter": { + "indentStyle": "space", + "indentWidth": 2, + "lineWidth": 15 + } +}