Created
September 1, 2024 07:42
-
-
Save HallexCosta/2120db599a888c1a4a2dbde5636d67de to your computer and use it in GitHub Desktop.
BiomeJS configs
This file contains 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.8.3/schema.json", | |
"organizeImports": { | |
"enabled": true | |
}, | |
"linter": { | |
"enabled": true, | |
"rules": { | |
"recommended": true | |
} | |
}, | |
"javascript": { | |
"formatter": { | |
"semicolons": "asNeeded", | |
"quoteStyle": "single", | |
"indentWidth": 2, | |
"lineEnding": "crlf", | |
"indentStyle": "tab", | |
"trailingCommas": "none", | |
"jsxQuoteStyle": "double" | |
}, | |
"globals": ["$", "_", "externalVariable"] | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment