Skip to content

Instantly share code, notes, and snippets.

@spawnrider
Created November 7, 2024 09:37
Show Gist options
  • Save spawnrider/a9d766cc881c01a7b4cc5d0c5be09c2b to your computer and use it in GitHub Desktop.
Save spawnrider/a9d766cc881c01a7b4cc5d0c5be09c2b to your computer and use it in GitHub Desktop.
Biome configuration file for Web projects
{
"formatter": {
"enabled": true,
"formatWithErrors": false,
"indentStyle": "space",
"indentWidth": 2,
"lineEnding": "crlf",
"lineWidth": 120,
"attributePosition": "auto"
},
"organizeImports": {
"enabled": true
},
"linter": {
"enabled": true,
"rules": {
"recommended": true,
"correctness": {
"noUnusedImports": "warn"
},
"style": {
"useImportType": "off"
}
}
},
"javascript": {
"formatter": {
"jsxQuoteStyle": "double",
"quoteProperties": "asNeeded",
"trailingCommas": "none",
"trailingComma": "none",
"semicolons": "always",
"arrowParentheses": "asNeeded",
"bracketSpacing": true,
"bracketSameLine": false,
"quoteStyle": "single",
"attributePosition": "auto"
}
},
"overrides": [{
"include": ["*.json"],
"formatter": {
"indentWidth": 2
}
}]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment