fix: use native hk staging in pre-commit hook

fix: add explicit check command to pre-push hook
This commit is contained in:
2026-03-15 15:04:54 -07:00
parent 757c854584
commit 1ac2dec3b0

2
hk.pkl
View File

@@ -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/"
}
}
}