Fix pre-commit #18

Merged
k.marinus merged 4 commits from build/fix-pre-commit into dev 2025-11-02 19:56:31 +00:00
Showing only changes of commit e5bf6fd1cc - Show all commits

View File

@@ -49,19 +49,9 @@ uv run --group integration-test pytest test/integration
## GitHooks ## GitHooks
To activate automatic commits/branch name checks run: To activate automatic linting, formatting, branch name checks and commit message checks, run:
```shell
git config --local core.hooksPath .githooks
```
If your commit fails its either:
branch name != <type>/description-of-branch ,
commit name != <type>: description of the commit.
<ref>: N25B-Num's
To add automatic linting and formatting, run:
```shell ```shell
uv run pre-commit install uv run pre-commit install
uv run pre-commit install --hook-type commit-msg
``` ```