chore: add combine-as isort option
This commit is contained in:
parent
22868ce158
commit
160f5e14ce
|
@ -37,13 +37,13 @@ install: $(VENV)
|
||||||
.format: $(VENV)
|
.format: $(VENV)
|
||||||
source $(VENV)/bin/activate
|
source $(VENV)/bin/activate
|
||||||
black .
|
black .
|
||||||
isort . --profile black
|
isort . --combine-as --profile black
|
||||||
|
|
||||||
.PHONY: .format-check
|
.PHONY: .format-check
|
||||||
.format-check: $(VENV)
|
.format-check: $(VENV)
|
||||||
source $(VENV)/bin/activate
|
source $(VENV)/bin/activate
|
||||||
black . --check
|
black . --check
|
||||||
isort . --profile black --check
|
isort . --combine-as --profile black --check
|
||||||
|
|
||||||
.PHONY: .pylint
|
.PHONY: .pylint
|
||||||
.pylint: $(VENV)
|
.pylint: $(VENV)
|
||||||
|
|
Loading…
Reference in New Issue