kculculate / makefile
neoai-kterasawa
update
9e16e32
raw
history blame
189 Bytes
.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