feat: add seed-isort-config

This commit is contained in:
Egor 2020-07-03 16:49:09 +05:00
parent 7b6f3a1fab
commit 37c6c34d3c
3 changed files with 49 additions and 2 deletions

View file

@ -70,8 +70,12 @@ clean:
# Code quality
# =================================================================================================
.PHONE: isort_seed_config
isort_update_known_libraries:
$(py) seed-isort-config
.PHONY: isort
isort:
isort: isort_update_known_libraries # update config in
$(py) isort -rc aiogram tests
.PHONY: black