Spaces:
Running
on
CPU Upgrade
Running
on
CPU Upgrade
File size: 298 Bytes
be37fd7 8c49cb6 be37fd7 8c49cb6 be37fd7 8c49cb6 be37fd7 |
1 2 3 4 5 6 7 8 9 10 11 12 |
.PHONY: style format quality
# Applies code style fixes to the specified file
style:
python -m black --line-length 119 $(file)
python -m isort $(file)
ruff check --fix $(file)
quality:
python -m black --check --line-length 119 $(file)
python -m isort --check-only $(file)
ruff check $(file) |