Skip to content

Instantly share code, notes, and snippets.

@HallexCosta
Last active January 11, 2025 13:37
Show Gist options
  • Save HallexCosta/2120db599a888c1a4a2dbde5636d67de to your computer and use it in GitHub Desktop.
Save HallexCosta/2120db599a888c1a4a2dbde5636d67de to your computer and use it in GitHub Desktop.
Biome.js configs
{
"$schema": "https://biomejs.dev/schemas/1.8.3/schema.json",
"organizeImports": {
"enabled": true
},
"files": {
"maxSize": 30000000
},
"linter": {
"enabled": true,
"rules": {
"recommended": true,
"a11y": {
"noSvgWithoutTitle": "off",
"useButtonType": "off",
"noAriaHiddenOnFocusable": "off"
},
"style": {
"noNonNullAssertion": "off",
"noParameterAssign": "off",
"useSelfClosingElements": "off"
},
"suspicious": {
"noExplicitAny": "off"
}
}
},
"formatter": {
"enabled": true,
"formatWithErrors": true,
"ignore": [
"dist/*.{js,ts}",
"node_modules/*.{ts,js,tsx,jsx,json,md}",
"node_modules/*.d.{ts}"
],
"attributePosition": "auto",
"indentStyle": "space",
"indentWidth": 2,
"lineWidth": 80,
"lineEnding": "lf"
},
"javascript": {
"formatter": {
"semicolons": "asNeeded",
"quoteStyle": "single",
"indentWidth": 2,
"lineEnding": "lf",
"indentStyle": "space",
"trailingCommas": "none",
"jsxQuoteStyle": "double",
"arrowParentheses": "always",
"bracketSameLine": false,
"bracketSpacing": true,
"quoteProperties": "asNeeded"
},
"parser": {},
"globals": ["$", "_", "externalVariable"]
},
"json": {
"parser": {
"allowComments": true,
"allowTrailingCommas": true
},
"formatter": {
"trailingCommas": "none"
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment