diff options
Diffstat (limited to 'client/simple/biome.json')
| -rw-r--r-- | client/simple/biome.json | 44 |
1 files changed, 44 insertions, 0 deletions
diff --git a/client/simple/biome.json b/client/simple/biome.json new file mode 100644 index 000000000..ebe7ee7dc --- /dev/null +++ b/client/simple/biome.json @@ -0,0 +1,44 @@ +{ + "$schema": "https://biomejs.dev/schemas/2.0.6/schema.json", + "files": { + "includes": ["**", "!dist/**", "!node_modules/**"], + "ignoreUnknown": true + }, + "vcs": { + "clientKind": "git", + "enabled": false, + "useIgnoreFile": true + }, + "assist": { + "enabled": true, + "actions": { + "recommended": true + } + }, + "formatter": { + "bracketSameLine": false, + "bracketSpacing": true, + "enabled": true, + "formatWithErrors": false, + "indentStyle": "space", + "indentWidth": 2, + "lineEnding": "lf", + "lineWidth": 120 + }, + "linter": { + "enabled": true, + "rules": { + "recommended": true + } + }, + "javascript": { + "formatter": { + "arrowParentheses": "always", + "jsxQuoteStyle": "double", + "quoteProperties": "asNeeded", + "quoteStyle": "double", + "semicolons": "always", + "trailingCommas": "none" + } + } +} |