Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save guigaoliveira/67ae13c2f5bffe3b4d77770816812b13 to your computer and use it in GitHub Desktop.
Save guigaoliveira/67ae13c2f5bffe3b4d77770816812b13 to your computer and use it in GitHub Desktop.
biome config
{
"$schema": "https://biomejs.dev/schemas/1.7.3/schema.json",
"organizeImports": {
"enabled": true
},
"linter": {
"enabled": true,
"rules": {
"recommended": true
}
},
"files": {
"include": [
"apps/**/*.ts",
"scripts/**/*.ts",
"libs /**/*.ts",
"workers/**/*.ts"
]
},
"javascript": {
"parser": {
"unsafeParameterDecoratorsEnabled": true
},
"formatter": {
"jsxQuoteStyle": "double",
"quoteProperties": "asNeeded",
"trailingComma": "all",
"semicolons": "always",
"arrowParentheses": "always",
"bracketSpacing": true,
"bracketSameLine": false,
"quoteStyle": "single",
"attributePosition": "auto"
}
},
"formatter": {
"enabled": true,
"formatWithErrors": false,
"indentStyle": "space",
"indentWidth": 2,
"lineEnding": "lf",
"lineWidth": 80,
"attributePosition": "auto"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment