Add policy: always use Makefile targets over direct tool invocation

This commit is contained in:
Jeffrey Paul 2026-02-22 15:42:39 +01:00
parent efbac580f9
commit ab7422c850

View File

@ -36,6 +36,10 @@ docker` (builds docker image).
- `main` must always pass `make check`, no exceptions. - `main` must always pass `make check`, no exceptions.
- Always use Makefile targets (`make fmt`, `make test`, `make lint`, etc.)
instead of invoking the underlying tools directly. The Makefile is the
single source of truth for how these operations are run.
- Do all changes on a feature branch. You can do whatever you want on a - Do all changes on a feature branch. You can do whatever you want on a
feature branch. feature branch.