mirror of
https://github.com/hiyouga/LLaMA-Factory.git
synced 2025-08-01 11:12:50 +08:00
12 lines
161 B
Makefile
12 lines
161 B
Makefile
.PHONY: quality style
|
|
|
|
check_dirs := src tests
|
|
|
|
quality:
|
|
black --check $(check_dirs)
|
|
ruff $(check_dirs)
|
|
|
|
style:
|
|
black $(check_dirs)
|
|
ruff $(check_dirs) --fix
|