Skip to content

Commit

Permalink
fix: makefile
Browse files Browse the repository at this point in the history
  • Loading branch information
gruberb committed Jun 24, 2024
1 parent dfba658 commit f1e2d4a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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)

Expand Down

0 comments on commit f1e2d4a

Please sign in to comment.