-
Notifications
You must be signed in to change notification settings - Fork 82
Closed
Labels
Description
In #268, @juanitorduz brought in use of ruff for formatting and linting.
I'm wondering if we need to make any edits here in the listing related parts of the Makefile
Lines 6 to 18 in 2169bf0
lint: | |
pip install causalpy[lint] | |
isort . | |
black . | |
check_lint: | |
pip install causalpy[lint] | |
flake8 . | |
isort --check-only . | |
black --diff --check --fast . | |
nbqa black --check . | |
nbqa isort --check-only . | |
interrogate . |