etherpump/Makefile

15 lines
183 B
Makefile
Raw Normal View History

2020-10-03 01:57:37 +02:00
default: style
2019-09-27 23:14:30 +02:00
format:
2020-10-03 01:57:37 +02:00
@poetry run black etherpump
sort:
@poetry run isort etherpump
2019-09-27 23:14:30 +02:00
lint:
2020-10-03 01:57:37 +02:00
@poetry run flake8 etherpump
style: format sort lint
.PHONY: style format sort lint