10 lines
122 B
Makefile
10 lines
122 B
Makefile
|
.PHONY: check install
|
||
|
|
||
|
check:
|
||
|
@mypy . || true
|
||
|
@flake8 . || true
|
||
|
@pyflakes . || true
|
||
|
|
||
|
install:
|
||
|
pip install --user -e .
|