Skip to content

Instantly share code, notes, and snippets.

@yannbertrand
Last active January 7, 2025 12:42
Show Gist options
  • Save yannbertrand/076cd54d6d13b044fa79d79a0a9b7300 to your computer and use it in GitHub Desktop.
Save yannbertrand/076cd54d6d13b044fa79d79a0a9b7300 to your computer and use it in GitHub Desktop.
Biome base local config (in `~/Developer`)
{
"$schema": "https://biomejs.dev/schemas/1.9.4/schema.json",
"formatter": {
"lineWidth": 120,
"indentStyle": "space",
"formatWithErrors": true,
"useEditorconfig": true
},
"javascript": {
"formatter": {
"quoteStyle": "single"
}
},
"overrides": [
{
"include": [
"1024pix/pix/api/**/*.js",
"1024pix/**/*_test.js",
"1024pix/**/*-test.js",
"1024pix/**/*.test.js",
"1024pix/**/*_test.gjs"
],
"linter": {
"rules": {
"complexity": {
"useArrowFunction": "off"
}
}
}
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment