CoolFace
Apppublic

bigscience/promptsource

sourceHugging Faceupdated 3y agoView on Hugging Face
105likes
Makefile17 linesDownload Raw Back to root
1.PHONY: quality style2 3check_dirs := promptsource4 5# Check that source code meets quality standards6 7quality:8	black --check --line-length 119 --target-version py38 $(check_dirs)9	isort --check-only $(check_dirs)10	flake8 $(check_dirs) --max-line-length 11911 12# Format source code automatically13 14style:15	black --line-length 119 --target-version py38 $(check_dirs)16	isort $(check_dirs)17