Spaces:
Sleeping
Sleeping
File size: 286 Bytes
6fc683c |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 |
.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)
|