Skip to content

Instantly share code, notes, and snippets.

@maykbrito
Created November 21, 2024 11:17
Show Gist options
  • Save maykbrito/35fdee7a751bc037ba3db84f6fc3cc0e to your computer and use it in GitHub Desktop.
Save maykbrito/35fdee7a751bc037ba3db84f6fc3cc0e to your computer and use it in GitHub Desktop.
configuração do biome.json maykbrito
{
"$schema": "./node_modules/@biomejs/biome/configuration_schema.json",
"organizeImports": {
"enabled": true
},
"formatter": {
"indentStyle": "space",
"indentWidth": 2,
"lineWidth": 80
},
"javascript": {
"formatter": {
"arrowParentheses": "asNeeded",
"jsxQuoteStyle": "double",
"quoteStyle": "single",
"semicolons": "asNeeded",
"trailingCommas": "es5"
}
},
"linter": {
"enabled": true,
"rules": {
"recommended": true,
"style": {
"noUnusedTemplateLiteral": "off"
},
"a11y": {
"noSvgWithoutTitle": "off"
},
"complexity": {
"noForEach": "warn"
},
"suspicious": {
"noArrayIndexKey": "info"
}
}
},
"files": {
"ignore": ["node_modules"]
},
"overrides": [
{
"include": ["./src/http/**"],
"linter": {
"rules": {
"suspicious": {
"noExplicitAny": "info"
},
"complexity": {
"useLiteralKeys": "info"
}
}
}
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment