From 75c792dd329f76df334ff46e7e42aa6d88848803 Mon Sep 17 00:00:00 2001 From: Amadeus Mader Date: Sat, 7 Mar 2026 18:45:36 +0100 Subject: [PATCH] docs: update agents.md --- AGENTS.md | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/AGENTS.md b/AGENTS.md index 5b55161..93d4a69 100644 --- a/AGENTS.md +++ b/AGENTS.md @@ -249,11 +249,13 @@ test/ ## Pre-commit Hooks -Lefthook runs on commit: +Lefthook runs on commit (configured in `lefthook.yml`): -- `prettier` - JS/CSS/YAML/JSON formatting -- `mix format` - Elixir formatting -- `typos` - spell checking -- `actionlint` - GitHub Actions validation +- `prettier` - JS/CSS/YAML/JSON formatting (runs in Docker) +- `mix format` - Elixir formatting (runs in Docker) +- `typos` - spell checking (runs on host) +- `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"`