chore: add combine-as isort option

This commit is contained in:
jo 2022-07-27 14:13:55 +02:00 committed by Kyle Robbertze
parent 22868ce158
commit 160f5e14ce
1 changed files with 2 additions and 2 deletions

View File

@ -37,13 +37,13 @@ install: $(VENV)
.format: $(VENV)
source $(VENV)/bin/activate
black .
isort . --profile black
isort . --combine-as --profile black
.PHONY: .format-check
.format-check: $(VENV)
source $(VENV)/bin/activate
black . --check
isort . --profile black --check
isort . --combine-as --profile black --check
.PHONY: .pylint
.pylint: $(VENV)