Dashboard / Makefile
SaulLu's picture
start to add bubble animation
cf4f63b
raw history blame
No virus
362 Bytes
.PHONY: quality style test test-examples
# Check that source code meets quality standards
quality:
python -m black --check --line-length 119 --target-version py38 .
python -m isort --check-only .
python -m flake8 --max-line-length 119
# Format source code automatically
style:
python -m black --line-length 119 --target-version py38 .
python -m isort .