Spaces:
Runtime error
Runtime error
File size: 362 Bytes
fdda9c6 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 |
.PHONY: quality style test test-examples
# Check that source code meets quality standards
quality:
python -m black --check --line-length 119 --target-version py38 .
python -m isort --check-only .
python -m flake8 --max-line-length 119
# Format source code automatically
style:
python -m black --line-length 119 --target-version py38 .
python -m isort . |