From 983e5e19d907b171aa520f7532677a3387645517 Mon Sep 17 00:00:00 2001 From: Fintan Halpenny Date: Wed, 15 Apr 2026 10:19:52 +0100 Subject: [PATCH] just: Use full argument names for codespell --- justfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/justfile b/justfile index 042a316a..c8d23e94 100644 --- a/justfile +++ b/justfile @@ -65,7 +65,7 @@ check-typos: (verify-tool "typos" "typos-cli") [parallel] check-spelling: (verify-tool "codespell") @echo "{{CHECK}}Checking for code typos...{{NORMAL}}" - @git ls-files -z | xargs -0 codespell -w + @git ls-files -z | xargs -0 codespell --write-changes --check-filenames # Run shellcheck on all shell scripts [group('pre-commit')]