From f1e2d4a377ea4b5ca25b11b27d2e9c3a989352ea Mon Sep 17 00:00:00 2001 From: Bastian Gruber Date: Mon, 24 Jun 2024 11:14:45 -0300 Subject: [PATCH] fix: makefile --- Makefile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Makefile b/Makefile index 11d814ad1..e4d4c5d8a 100644 --- a/Makefile +++ b/Makefile @@ -20,16 +20,16 @@ $(INSTALL_STAMP): pyproject.toml poetry.lock $(POETRY) install touch $(INSTALL_STAMP) -.PHONY: sort +.PHONY: ruff-sort ruff-sort: $(INSTALL_STAMP) ## Run ruff sorting $(POETRY) run ruff check --fix $(APP_AND_TEST_DIRS) $(POETRY) run ruff format $(APP_AND_TEST_DIRS) -.PHONY: lint +.PHONY: ruff-lint ruff-lint: $(INSTALL_STAMP) ## Run ruff linting $(POETRY) run ruff check $(APP_AND_TEST_DIRS) -.PHONY: doc +.PHONY: ruff-doc ruff-doc: $(INSTALL_STAMP) ## Run ruff docs $(POETRY) run ruff check --select D $(APP_AND_TEST_DIRS)