Skip to content

Commit 395987c

Browse files
committed
Replace makefile commands with ruff
1 parent 88f2067 commit 395987c

File tree

1 file changed

+5
-6
lines changed

1 file changed

+5
-6
lines changed

Makefile

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -5,16 +5,15 @@ init:
55

66
lint:
77
pip install causalpy[lint]
8-
isort .
9-
black .
8+
ruff check --fix .
9+
ruff format .
1010

1111
check_lint:
1212
pip install causalpy[lint]
13-
flake8 .
14-
isort --check-only .
15-
black --diff --check --fast .
13+
ruff check .
14+
ruff format --diff --check .
1615
nbqa black --check .
17-
nbqa isort --check-only .
16+
nbqa ruff .
1817
interrogate .
1918

2019
doctest:

0 commit comments

Comments
 (0)