Created
October 1, 2024 23:01
-
-
Save cmackenzie1/91f1d93e63d4472fd6e6d9e9572161d2 to your computer and use it in GitHub Desktop.
My biome.json
This file contains 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
{ | |
"$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