Skip to content

Instantly share code, notes, and snippets.

@cmackenzie1
Created October 1, 2024 23:01
Show Gist options
  • Save cmackenzie1/91f1d93e63d4472fd6e6d9e9572161d2 to your computer and use it in GitHub Desktop.
Save cmackenzie1/91f1d93e63d4472fd6e6d9e9572161d2 to your computer and use it in GitHub Desktop.
My biome.json
{
"$schema": "https://biomejs.dev/schemas/1.9.2/schema.json",
"vcs": {
"enabled": true,
"clientKind": "git",
"useIgnoreFile": true
},
"files": {
"ignoreUnknown": false,
"ignore": [
"node_modules",
".next",
".wrangler-next",
".vercel",
".wrangler"
]
},
"formatter": {
"enabled": true,
"indentStyle": "tab"
},
"organizeImports": {
"enabled": true
},
"linter": {
"enabled": true,
"rules": {
"recommended": true,
"correctness": {
"noUnusedImports": {
"level": "info",
"fix": "safe"
}
}
}
},
"javascript": {
"formatter": {
"quoteStyle": "double"
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment