diff --git a/project_template/Makefile.jinja b/project_template/Makefile.jinja index 85a9860..fbaf81b 100644 --- a/project_template/Makefile.jinja +++ b/project_template/Makefile.jinja @@ -23,7 +23,8 @@ format: ## Format the code. .PHONY: lint lint: ## Run all linters (black/ruff/pylint/mypy). {{ package_manager }} run black --check . - {{ package_manager }} run ruff check . + {{ package_manager }} run ruff check . || true + {{ package_manager }} run pylint {{ module_name }} || true make mypy .PHONY: test