Tzktz's picture
Upload 7664 files
6fc683c verified
raw
history blame contribute delete
286 Bytes
.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)