This template provides a minimal setup to get React working in Vite with HMR and Biome linting/formatting.
Currently, two official plugins are available:
- @vitejs/plugin-react uses Babel for Fast Refresh
- @vitejs/plugin-react-swc uses SWC for Fast Refresh
This project uses Biome for linting and formatting. The Biome configuration is in biome.json at the repository root.
- Run lint checks:
npm run lint(runsbiome check). - Apply fixes:
npm run lint:fix(runsbiome check --apply). - Format files:
npm run format(runsbiome format).
For type-aware rules or project-specific settings, update biome.json and include the appropriate tsconfig files under project fields as needed.