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
Copy file name to clipboardExpand all lines: README.md
+81Lines changed: 81 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -274,6 +274,87 @@ make pre-commit-install # Install pre-commit hooks
274
274
make pre-commit-run # Run pre-commit hooks on all files
275
275
```
276
276
277
+
### Commitizen - Conventional Commits
278
+
279
+
This project uses [Commitizen](https://commitizen-tools.github.io/commitizen/) to ensure consistent and semantic commit messages following the [Conventional Commits](https://www.conventionalcommits.org/) standard.
280
+
281
+
#### Using `cz commit`
282
+
283
+
Instead of using `git commit`, use Commitizen's interactive CLI:
284
+
285
+
```bash
286
+
uv run cz commit
287
+
```
288
+
289
+
This will guide you through creating a properly formatted commit message with:
290
+
291
+
1.**Type**: Select the type of change (feat, fix, docs, style, refactor, test, chore, etc.)
292
+
2.**Scope** (optional): Specify the area of the codebase affected
0 commit comments