astra / LLaMA-Factory /Makefile
Lorenzob's picture
Upload folder using huggingface_hub
9031f04 verified
raw
history blame
161 Bytes
.PHONY: quality style
check_dirs := src tests
quality:
black --check $(check_dirs)
ruff $(check_dirs)
style:
black $(check_dirs)
ruff $(check_dirs) --fix