jbilcke-hf's picture
jbilcke-hf HF Staff
we are going to hack into finetrainers
9fd1204
raw
history blame contribute delete
329 Bytes
.PHONY: quality style
check_dirs := finetrainers tests examples train.py setup.py
quality:
ruff check $(check_dirs) --exclude examples/_legacy
ruff format --check $(check_dirs) --exclude examples/_legacy
style:
ruff check $(check_dirs) --fix --exclude examples/_legacy
ruff format $(check_dirs) --exclude examples/_legacy