Last active
August 14, 2025 18:11
-
-
Save zzzarius/d78af75f68e77b7d25f4ee2b703b52aa to your computer and use it in GitHub Desktop.
Biome config
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "root": false, | |
| "$schema": "https://biomejs.dev/schemas/2.1.4/schema.json", | |
| "vcs": { | |
| "enabled": true, | |
| "clientKind": "git", | |
| "useIgnoreFile": true | |
| }, | |
| "files": { | |
| "ignoreUnknown": false, | |
| "includes": ["**"] | |
| }, | |
| "formatter": { | |
| "enabled": true, | |
| "indentStyle": "space", | |
| "indentWidth": 2 | |
| }, | |
| "assist": { "actions": { "source": { "organizeImports": "on" } } }, | |
| "linter": { | |
| "enabled": true, | |
| "rules": { | |
| "recommended": true | |
| } | |
| }, | |
| "javascript": { | |
| "formatter": { | |
| "quoteStyle": "double" | |
| } | |
| }, | |
| "overrides": [ | |
| { | |
| "includes": ["**/*.astro"], | |
| "linter": { | |
| "rules": { | |
| "style": { | |
| "useConst": "off", | |
| "useImportType": "off" | |
| } | |
| } | |
| } | |
| } | |
| ] | |
| } |
Author
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
npm i -D @biomejs/biomepackage.jsonscripts: