Skip to content

Commit

Permalink
Replace makefile commands with ruff
Browse files Browse the repository at this point in the history
  • Loading branch information
jsakv committed Nov 22, 2023
1 parent 88f2067 commit 395987c
Showing 1 changed file with 5 additions and 6 deletions.
11 changes: 5 additions & 6 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -5,16 +5,15 @@ init:

lint:
pip install causalpy[lint]
isort .
black .
ruff check --fix .
ruff format .

check_lint:
pip install causalpy[lint]
flake8 .
isort --check-only .
black --diff --check --fast .
ruff check .
ruff format --diff --check .
nbqa black --check .
nbqa isort --check-only .
nbqa ruff .
interrogate .

doctest:
Expand Down

0 comments on commit 395987c

Please sign in to comment.