Skip to content

Instantly share code, notes, and snippets.

@philsinatra
Created August 6, 2025 15:10
Show Gist options
  • Save philsinatra/910c20ec4d5ffb16ad97350839a6c664 to your computer and use it in GitHub Desktop.
Save philsinatra/910c20ec4d5ffb16ad97350839a6c664 to your computer and use it in GitHub Desktop.
Biome Config
{
"$schema": "https://biomejs.dev/schemas/2.1.3/schema.json",
"vcs": {
"enabled": false,
"clientKind": "git",
"useIgnoreFile": false
},
"files": {
"ignoreUnknown": false
},
"formatter": {
"enabled": true,
"indentStyle": "tab",
"indentWidth": 4
},
"linter": {
"enabled": true,
"rules": {
"recommended": true
}
},
"javascript": {
"formatter": {
"quoteStyle": "single",
"semicolons": "asNeeded",
"trailingCommas": "all",
"arrowParentheses": "asNeeded",
"indentWidth": 4
}
},
"assist": {
"enabled": true,
"actions": {
"source": {
"organizeImports": "on"
}
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment