Skip to content

Instantly share code, notes, and snippets.

@adiusz
Last active October 13, 2025 12:45
Show Gist options
  • Select an option

  • Save adiusz/f12b2d028dcd2503b7c183661d964a7d to your computer and use it in GitHub Desktop.

Select an option

Save adiusz/f12b2d028dcd2503b7c183661d964a7d to your computer and use it in GitHub Desktop.
biome.json
{
"$schema": "https://biomejs.dev/schemas/2.2.5/schema.json",
"vcs": {
"enabled": true,
"clientKind": "git",
"useIgnoreFile": true
},
"files": {
"ignoreUnknown": false
},
"formatter": {
"enabled": true,
"attributePosition": "multiline",
"indentStyle": "tab",
"bracketSameLine": false,
"expand": "always"
},
"linter": {
"enabled": true,
"rules": {
"recommended": true,
"style": {
"useImportType": "off"
},
"correctness": {
"useUniqueElementIds": "off",
"useExhaustiveDependencies": "off",
"noUnusedImports": "error"
},
"suspicious": {
"noExplicitAny": "off"
}
}
},
"javascript": {
"formatter": {
"quoteStyle": "double",
"trailingCommas": "none",
"arrowParentheses": "asNeeded"
},
"parser": {
"unsafeParameterDecoratorsEnabled": true
}
},
"assist": {
"enabled": true,
"actions": {
"source": {
"organizeImports": "on"
}
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment