Spaces:
Runtime error
Runtime error
File size: 179 Bytes
fa063d7 |
1 2 3 4 5 6 7 8 9 10 11 12 |
.PHONY: quality style
# Check that source code meets quality standards
quality:
black --check --diff .
ruff .
# Format source code automatically
style:
black .
ruff . --fix
|