1
0
mirror of https://github.com/trezor/trezor-firmware.git synced 2024-11-22 07:28:10 +00:00

make: run flake8 during style check as well

This commit is contained in:
Tomas Susanka 2019-08-06 10:08:23 +02:00
parent c9096d9a0a
commit f36191274f

View File

@ -30,6 +30,8 @@ pystyle: ## apply code style on application sources and tests
@isort $(PY_FILES)
@echo [BLACK]
@black $(PY_FILES)
@echo [FLAKE8]
@flake8 $(PY_FILES)
make -C python style
cstyle_check: ## run code style check on low-level C code