aboutsummaryrefslogtreecommitdiffstats
path: root/checker/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'checker/Makefile')
-rw-r--r--checker/Makefile17
1 files changed, 17 insertions, 0 deletions
diff --git a/checker/Makefile b/checker/Makefile
new file mode 100644
index 0000000..592de2f
--- /dev/null
+++ b/checker/Makefile
@@ -0,0 +1,17 @@
+.PHONY: all lint diff format test
+
+all: format test
+
+lint:
+ python3 -m black --check src
+ python3 -m flake8 src
+ python3 -m mypy src
+
+diff:
+ python3 -m isort --diff src
+ python3 -m black --diff src
+
+format:
+ python3 -m isort src
+ python3 -m black src
+