Spaces:
Running
Running
File size: 329 Bytes
9fd1204 |
1 2 3 4 5 6 7 8 9 10 11 12 |
.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
|