Created
May 7, 2024 14:27
-
-
Save guigaoliveira/67ae13c2f5bffe3b4d77770816812b13 to your computer and use it in GitHub Desktop.
biome config
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"$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