CoolFace
Apppublic

CompileError/WebCoderBench

sourceHugging Faceapache-2.0updated 5mo agoView on Hugging Face
0likes
Makefile14 linesDownload Raw Back to root
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