From a65265414b1a928e27f07310672c554f43dcc366 Mon Sep 17 00:00:00 2001 From: Danny Willems Date: Mon, 16 Mar 2026 18:17:52 +0100 Subject: [PATCH 1/2] Remove duplicated lint-shell target in Makefile Closes #67 --- Makefile | 4 ---- 1 file changed, 4 deletions(-) diff --git a/Makefile b/Makefile index d22685b..54d40ec 100644 --- a/Makefile +++ b/Makefile @@ -57,10 +57,6 @@ 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/ From 7d9673b42162de326bc219265a19027f1c4a0626 Mon Sep 17 00:00:00 2001 From: Danny Willems Date: Mon, 16 Mar 2026 18:18:25 +0100 Subject: [PATCH 2/2] CHANGELOG: remove duplicated lint-shell target --- CHANGELOG.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 9fddbc0..d936d74 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -16,6 +16,7 @@ and this project adheres to - CI: use Makefile targets in Windows job and add sequential per-commit testing triggered by the ci:per-commit label ([3967e42], [#66]) +- Remove duplicated lint-shell target in Makefile ([a652654], [#67]) ## [0.1.10] - 2024-12-XX @@ -52,6 +53,7 @@ and this project adheres to [0.1.9]: https://github.com/LeakIX/LeakIXClient-Python/releases/tag/v0.1.9 +[a652654]: https://github.com/LeakIX/LeakIXClient-Python/commit/a652654 [3967e42]: https://github.com/LeakIX/LeakIXClient-Python/commit/3967e42 [ae676d9]: https://github.com/LeakIX/LeakIXClient-Python/commit/ae676d9 [65c5121]: https://github.com/LeakIX/LeakIXClient-Python/commit/65c5121 @@ -64,3 +66,4 @@ and this project adheres to [#66]: https://github.com/LeakIX/LeakIXClient-Python/pull/66 +[#67]: https://github.com/LeakIX/LeakIXClient-Python/issues/67