mirror of
				https://github.com/hiyouga/LLaMA-Factory.git
				synced 2025-11-04 18:02:19 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			12 lines
		
	
	
		
			193 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
			
		
		
	
	
			12 lines
		
	
	
		
			193 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
.PHONY: quality style
 | 
						|
 | 
						|
check_dirs := scripts src tests
 | 
						|
 | 
						|
quality:
 | 
						|
	ruff check $(check_dirs)
 | 
						|
	ruff format --check $(check_dirs)
 | 
						|
 | 
						|
style:
 | 
						|
	ruff check $(check_dirs) --fix
 | 
						|
	ruff format $(check_dirs)
 |