chore: move isort config to pyproject.toml

This commit is contained in:
jo 2022-12-07 12:57:39 +01:00 committed by Kyle Robbertze
parent 5738edb49c
commit f394336efc
8 changed files with 30 additions and 2 deletions

View file

@ -34,12 +34,12 @@ install: $(VENV)
.PHONY: .format
.format: $(VENV)
$(VENV)/bin/black .
$(VENV)/bin/isort . --combine-as --profile black
$(VENV)/bin/isort .
.PHONY: .format-check
.format-check: $(VENV)
$(VENV)/bin/black . --check
$(VENV)/bin/isort . --combine-as --profile black --check
$(VENV)/bin/isort . --check
.PHONY: .pylint
.pylint: $(VENV)