This commit is contained in:
Anonymous 2024-06-09 20:42:40 +08:00
parent b9f978b20a
commit 2c84cffa55

8
mirrors/Makefile Normal file
View File

@ -0,0 +1,8 @@
.PHONY: check lint
check:
black . --exclude .venv --check
flake8 . --exclude=.venv
mypy . --check-untyped-defs --exclude .venv
lint:
black . --exclude .venv