WIP: Format code with Google Typescript formatting guidelines

This commit is contained in:
2025-07-04 10:39:32 -04:00
parent e53d38e0ad
commit c834acdfec
12 changed files with 596 additions and 235 deletions

12
biome.jsonc Normal file
View File

@@ -0,0 +1,12 @@
{
"javascript": {
// This is taken from the Google TS style guide:
// https://github.com/google/gts/blob/main/.prettierrc.json
"formatter": {
"bracketSpacing": false,
"quoteStyle": "single",
"trailingCommas": "all",
"arrowParentheses": "asNeeded"
}
}
}