From a74befd2a78a79bde492c7bd565176cfc6d18757 Mon Sep 17 00:00:00 2001 From: Fintan Halpenny Date: Wed, 15 Apr 2026 10:19:52 +0100 Subject: [PATCH] just: Expand shellcheck glob to all shell scripts --- justfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/justfile b/justfile index c8d23e94..70a6c4eb 100644 --- a/justfile +++ b/justfile @@ -74,7 +74,7 @@ check-spelling: (verify-tool "codespell") [parallel] check-scripts: (verify-tool "shellcheck") @echo "{{CHECK}}Checking shell scripts...{{NORMAL}}" - @shellcheck scripts/*.sh + @shellcheck **/*.sh # Run checks for forbidden keywords [group('pre-commit')]