Skip to content

Commit

Permalink
remove isort from makefile.
Browse files Browse the repository at this point in the history
  • Loading branch information
perrygoy committed Nov 16, 2023
1 parent b04cf5b commit 795a233
Showing 1 changed file with 3 additions and 9 deletions.
12 changes: 3 additions & 9 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -22,12 +22,6 @@ black-check:
black:
black .

isort-check:
isort . --check

isort:
isort .

ruff:
ruff check .

Expand All @@ -37,12 +31,12 @@ ruff-fix:
mypy:
mypy .

lint: isort-check ruff mypy
lint: ruff mypy

.PHONY: black-check black isort-check isort ruff ruff-fix mypy lint
.PHONY: black-check black ruff ruff-fix mypy lint

pre-check-in: black-check lint

pre-check-in-fix: black isort ruff-fix mypy
pre-check-in-fix: black ruff-fix mypy

.PHONY: pre-check-in pre-check-in-fix

0 comments on commit 795a233

Please sign in to comment.