Spaces:
Runtime error
Runtime error
File size: 189 Bytes
9e16e32 |
1 2 3 4 5 6 7 8 |
.PHONY: lint
lint: ## run tests with poetry (isort, black, pflake8, mypy)
poetry run black src
poetry run isort src
poetry run pflake8 src
poetry run mypy src --explicit-package-bases
|