From 2c84cffa555026755f6b4b38e3eda9da7ccb1b89 Mon Sep 17 00:00:00 2001 From: Anonymous <> Date: Sun, 9 Jun 2024 20:42:40 +0800 Subject: [PATCH] lint --- mirrors/Makefile | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 mirrors/Makefile diff --git a/mirrors/Makefile b/mirrors/Makefile new file mode 100644 index 0000000..b0081a6 --- /dev/null +++ b/mirrors/Makefile @@ -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