15 lines
286 B
Makefile
15 lines
286 B
Makefile
.PHONY: quality style
|
|
check_dirs := layoutlmft examples
|
|
# Check that source code meets quality standards
|
|
|
|
quality:
|
|
black --check $(check_dirs)
|
|
isort --check-only $(check_dirs)
|
|
flake8 $(check_dirs)
|
|
|
|
# Format source code automatically
|
|
|
|
style:
|
|
black $(check_dirs)
|
|
isort $(check_dirs)
|