From 833177c0a4e660fdabcfacaa828fbf18b742cbae Mon Sep 17 00:00:00 2001 From: Callahan Kovacs Date: Fri, 5 Jun 2026 06:21:25 -0500 Subject: [PATCH] build(Makefile): add lint-code target Signed-off-by: Callahan Kovacs --- Makefile | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index edb5bbc..758c49b 100644 --- a/Makefile +++ b/Makefile @@ -24,7 +24,10 @@ include common.mk format: format-ruff format-codespell format-prettier format-pre-commit ## Run all automatic formatters .PHONY: lint -lint: lint-ruff lint-ty lint-codespell lint-mypy lint-prettier lint-pyright lint-shellcheck lint-docs lint-twine lint-uv-lockfile lint-actions ## Run all linters +lint: lint-code lint-docs lint-twine lint-uv-lockfile lint-actions ## Run all linters + +.PHONY: lint-code +lint-code: lint-ruff lint-ty lint-codespell lint-mypy lint-prettier lint-pyright lint-shellcheck ## Run code-specific linters .PHONY: pack pack: pack-pip ## Build all packages