Last active
December 16, 2023 08:36
-
-
Save antpaw/331a8e24079187a5b139bfd1a3a4c736 to your computer and use it in GitHub Desktop.
Biome defaults
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.4.0/schema.json", | |
"files": { | |
"ignore": ["**/__generated__/*"] | |
}, | |
"linter": { | |
"rules": { | |
"style": { | |
"useBlockStatements": "error", | |
"useShorthandArrayType": "error", | |
"noShoutyConstants": "warn" | |
} | |
} | |
}, | |
"formatter": { | |
"indentStyle": "space", | |
"lineWidth": 100 | |
}, | |
"javascript": { | |
"formatter": { | |
"semicolons": "asNeeded", | |
"quoteStyle": "single" | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment