10 lines
168 B
Makefile
10 lines
168 B
Makefile
all: lint
|
|
|
|
include ../../tools/python.mk
|
|
|
|
PIP_INSTALL := --editable .[dev]
|
|
PYLINT_ARG := liquidsoap pypo
|
|
MYPY_ARG := liquidsoap pypo
|
|
|
|
lint: .pylint .mypy
|
|
clean: .clean
|