11 lines
177 B
Makefile
11 lines
177 B
Makefile
all: lint
|
|
|
|
include ../../tools/python.mk
|
|
|
|
PIP_INSTALL := --editable .
|
|
PYLINT_ARG := airtime-celery
|
|
MYPY_ARG := airtime-celery
|
|
|
|
format: .format
|
|
lint: .pylint .mypy
|
|
clean: .clean
|