You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We use [Biome](https://biomejs.dev/) for linting and formatting:
16
+
17
+
```bash
18
+
npm run format # Format code
19
+
npm run lint # Check lint errors
20
+
npm run check # Run all checks (CI)
21
+
```
22
+
23
+
Pre-commit hooks via Husky will run Biome automatically on staged files.
24
+
25
+
For a better experience, install the [Biome VS Code extension](https://marketplace.visualstudio.com/items?itemName=biomejs.biome) for real-time linting and format-on-save.
26
+
27
+
## Pull Requests
28
+
29
+
1. Create a feature branch
30
+
2. Make changes and ensure `npm run check` passes
31
+
3. Submit PR against `main` with a clear description
32
+
33
+
## Issues
34
+
35
+
Include steps to reproduce, expected vs actual behavior, and AI provider used.
0 commit comments