etherpump/Makefile

15 lines
183 B
Makefile

default: style
format:
@poetry run black etherpump
sort:
@poetry run isort etherpump
lint:
@poetry run flake8 etherpump
style: format sort lint
.PHONY: style format sort lint