From 1ac2dec3b0b30d478facea89b0ab979aad838f1b Mon Sep 17 00:00:00 2001 From: David Gwilliam Date: Sun, 15 Mar 2026 15:04:54 -0700 Subject: [PATCH] fix: use native hk staging in pre-commit hook fix: add explicit check command to pre-push hook --- hk.pkl | 2 ++ 1 file changed, 2 insertions(+) diff --git a/hk.pkl b/hk.pkl index 964f9ad..155daf6 100644 --- a/hk.pkl +++ b/hk.pkl @@ -11,6 +11,7 @@ hooks { } ["ruff"] = (Builtins.ruff) { prefix = "uv run" + check = "ruff check engine/ tests/" fix = "ruff check --fix --unsafe-fixes engine/ tests/" } } @@ -19,6 +20,7 @@ hooks { steps { ["ruff"] = (Builtins.ruff) { prefix = "uv run" + check = "ruff check engine/ tests/" } } }