llama-factory / Makefile
officialhimanshu595's picture
Upload folder using huggingface_hub
20076b6 verified
.PHONY: quality style
check_dirs := src tests
quality:
black --check $(check_dirs)
ruff $(check_dirs)
style:
black $(check_dirs)
ruff $(check_dirs) --fix