docs: update agents.md

This commit is contained in:
Amadeus Mader 2026-03-07 18:45:36 +01:00
parent 590e15c2c6
commit 75c792dd32

View file

@ -249,11 +249,13 @@ test/
## Pre-commit Hooks ## Pre-commit Hooks
Lefthook runs on commit: Lefthook runs on commit (configured in `lefthook.yml`):
- `prettier` - JS/CSS/YAML/JSON formatting - `prettier` - JS/CSS/YAML/JSON formatting (runs in Docker)
- `mix format` - Elixir formatting - `mix format` - Elixir formatting (runs in Docker)
- `typos` - spell checking - `typos` - spell checking (runs on host)
- `actionlint` - GitHub Actions validation - `actionlint` - GitHub Actions validation (runs on host)
**Note:** `prettier` and `mix format` run inside Docker to avoid permission issues. `typos` and `actionlint` run on the host machine.
Bypass if needed: `git commit --no-verify -m "message"` Bypass if needed: `git commit --no-verify -m "message"`