Spaces:
Running
on
CPU Upgrade
Running
on
CPU Upgrade
.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) |