Alina Lozovskaia
updated makefile
be37fd7
raw
history blame
298 Bytes
.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)