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 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/