Spaces:
Running
Running
| check_dirs := promptsource | |
| # Check that source code meets quality standards | |
| quality: | |
| black --check --line-length 119 --target-version py38 $(check_dirs) | |
| isort --check-only $(check_dirs) | |
| flake8 $(check_dirs) --max-line-length 119 | |
| # Format source code automatically | |
| style: | |
| black --line-length 119 --target-version py38 $(check_dirs) | |
| isort $(check_dirs) | |