Spaces:
Running
Running
File size: 281 Bytes
27e2770 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 |
setup:
python -m venv venv
venv/bin/pip install -r requirements.txt
venv/bin/pip install -r requirements-dev.txt
format:
venv/bin/black .
check-code: lint-python check-formatting
check-formatting:
venv/bin/black --check .
lint-python:
venv/bin/pylint --rcfile=pylintrc .
|