From 9869c3524e9bfef4979f9a38dda3ae2ff86b5ab1 Mon Sep 17 00:00:00 2001 From: Kenneth Date: Thu, 25 Jul 2024 00:05:25 +0100 Subject: [PATCH] chore: add biome.json to support biome.js --- web/biome.json | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 web/biome.json diff --git a/web/biome.json b/web/biome.json new file mode 100644 index 0000000..ba14d21 --- /dev/null +++ b/web/biome.json @@ -0,0 +1,25 @@ +{ + "$schema": "https://biomejs.dev/schemas/1.8.3/schema.json", + "linter": { + "enabled": true + }, + "formatter": { + "enabled": true, + "indentStyle": "tab", + "indentWidth": 2, + "lineWidth": 80 + }, + "organizeImports": { + "enabled": true + }, + "javascript": { + "formatter": { + "quoteStyle": "double", + "arrowParentheses": "always", + "bracketSameLine": false, + "bracketSpacing": true, + "semicolons": "always", + "trailingCommas": "all" + } + } +}