Documentation Index
Fetch the complete documentation index at: https://docs.formizee.com/llms.txt
Use this file to discover all available pages before exploring further.
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.