Skip to content

Commit a696d45

Browse files
committed
use ruff instead of pylint/flake/isort/black
1 parent 2327443 commit a696d45

File tree

4 files changed

+575
-438
lines changed

4 files changed

+575
-438
lines changed

Makefile

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -8,14 +8,13 @@ setup:
88

99
.PHONY:
1010
lint:
11-
poetry run black --check .
12-
poetry run isort --check-only --project=$(PROJECT) .
13-
poetry run flake8
11+
poetry run ruff format . --diff
12+
poetry run ruff --select I . --diff
1413

1514
.PHONY:
1615
fmt:
17-
poetry run black .
18-
poetry run isort --project=$(PROJECT) .
16+
poetry run ruff format .
17+
poetry run ruff --select I . --fix
1918

2019
.PHONY:
2120
test:

0 commit comments

Comments
 (0)