Contributing
Editor Setup (Optional)
Editor setup to enhance your development experience
Visual Studio Code
Here is a list of recommended VS Code extensions:
- Biome - Linter and code formatter
To configure Biome as the default formatter for supported files in this workspace, follow these steps:
- Open the
.vscode/settings.json
file. - Add or update the settings to set Biome as the default formatter for various file types:
{
"[jsonc]": {
"editor.defaultFormatter": "biomejs.biome"
},
"[json]": {
"editor.defaultFormatter": "biomejs.biome"
},
"[javascript]": {
"editor.defaultFormatter": "biomejs.biome"
},
"[typescript]": {
"editor.defaultFormatter": "biomejs.biome"
},
"[typescriptreact]": {
"editor.defaultFormatter": "biomejs.biome"
},
"editor.codeActionsOnSave": {
"source.organizeImports.biome": true,
"quickfix.biome": true
}
}
For detailed information about the Biome extension and its features, visit the Biome Documentation.
Was this page helpful?