From cf6764f3f95f0cfa131d87d2f8bc65cb3abfcfdc Mon Sep 17 00:00:00 2001 From: fl0werpowers <47599466+fl0werpowers@users.noreply.github.com> Date: Fri, 10 Jan 2025 19:40:25 +0100 Subject: [PATCH] Provide biome configuration --- biome.json | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 biome.json diff --git a/biome.json b/biome.json new file mode 100644 index 000000000..ff6525759 --- /dev/null +++ b/biome.json @@ -0,0 +1,27 @@ +{ + "$schema": "https://biomejs.dev/schemas/1.7.3/schema.json", + "formatter": { + "enabled": true, + "formatWithErrors": false, + "indentStyle": "space", + "indentWidth": 2, + "lineEnding": "lf", + "lineWidth": 100, + "attributePosition": "auto", + "ignore": ["**/public", "**/node_modules", "**/.quartz-cache"] + }, + "organizeImports": { "enabled": true }, + "linter": { "enabled": false, "rules": { "recommended": true } }, + "javascript": { + "formatter": { + "jsxQuoteStyle": "double", + "quoteProperties": "asNeeded", + "trailingComma": "all", + "semicolons": "asNeeded", + "arrowParentheses": "always", + "bracketSpacing": true, + "bracketSameLine": false, + "attributePosition": "auto" + } + } +}