open-llm-leaderboard/open_llm_leaderboard
14k
1.PHONY: style format2 3 4style:5 python -m black --line-length 119 .6 python -m isort .7 ruff check --fix .8 9 10quality:11 python -m black --check --line-length 119 .12 python -m isort --check-only .13 ruff check .14 