ft-dpo-gradio / makefile
ivanvmoreno
initial commit
86419a9
raw
history blame contribute delete
261 Bytes
.PHONY: style quality
style:
python -m black --line-length 119 --target-version py311 .
python -m isort .
quality:
python -m black --check --line-length 119 --target-version py311 .
python -m isort --check-only .
python -m flake8 --max-line-length 119 .