Skip to content

Instantly share code, notes, and snippets.

@jon-hotaisle
Created September 13, 2025 05:33
Show Gist options
  • Select an option

  • Save jon-hotaisle/c0ce411891d956e76b1750f27b5769e7 to your computer and use it in GitHub Desktop.

Select an option

Save jon-hotaisle/c0ce411891d956e76b1750f27b5769e7 to your computer and use it in GitHub Desktop.
biome.jsonc for use with ultracite.ai
{
"$schema": "./node_modules/@biomejs/biome/configuration_schema.json",
"extends": ["ultracite"],
"formatter": {
"indentStyle": "tab",
"indentWidth": 4,
"lineWidth": 80
},
"javascript": {
"formatter": {
"quoteStyle": "single"
}
},
"json": {
"formatter": {
"indentStyle": "tab",
"indentWidth": 4
}
},
"linter": {
"rules": {
"performance": {
"noImgElement": "off"
},
"nursery": {
"useImageSize": "off"
},
"style": {
"noMagicNumbers": "off"
},
"a11y": {
"noNoninteractiveElementInteractions": "off",
"useKeyWithClickEvents": "off"
}
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment