From 450af09ed2bf9505b634850fec9e98b6d32560fa Mon Sep 17 00:00:00 2001 From: Danny Willems Date: Sun, 8 Feb 2026 00:22:33 -0300 Subject: [PATCH] Add lint-shell Makefile target for shellcheck Runs shellcheck on all bash scripts in .github/scripts/. Closes #44 --- Makefile | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Makefile b/Makefile index fb07a80..fd0ca44 100644 --- a/Makefile +++ b/Makefile @@ -53,6 +53,10 @@ check: check-format lint typecheck test ## Run all checks check-outdated: ## Check for outdated dependencies poetry show --outdated || true +.PHONY: lint-shell +lint-shell: ## Lint shell scripts using shellcheck + shellcheck .github/scripts/*.sh + .PHONY: clean clean: ## Clean build artifacts rm -rf dist/ build/ *.egg-info/ .pytest_cache/ .mypy_cache/ .ruff_cache/