CoolFace
Apppublic

open-llm-leaderboard/open_llm_leaderboard

sourceHugging Faceapache-2.0updated 4mo agoView on Hugging Face
14klikes
Makefile19 linesDownload Raw Back to root
1.PHONY: style format quality all2 3# Applies code style fixes to the specified file or directory4style:5	@echo "Applying style fixes to $(file)"6	ruff format $(file)7	ruff check --fix $(file) --line-length 1198 9# Checks code quality for the specified file or directory10quality:11	@echo "Checking code quality for $(file)"12	ruff check $(file) --line-length 11913 14# Applies PEP8 formatting and checks the entire codebase15all:16	@echo "Formatting and checking the entire codebase"17	ruff format .18	ruff check --fix . --line-length 11919