From ceed951796b15c5615f5460b6f637ca50ebcded9 Mon Sep 17 00:00:00 2001 From: Yax <1949284+kianby@users.noreply.github.com> Date: Sat, 19 Nov 2022 20:40:15 +0100 Subject: [PATCH] check everything with a Makefile --- Makefile | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 Makefile diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..02911e8 --- /dev/null +++ b/Makefile @@ -0,0 +1,13 @@ +all: test typehint lint black + +test: + pytest + +typehint: + mypy --ignore-missing-imports stacosys/ + +lint: + pylint stacosys/ + +black: + black -l 79 stacosys/ \ No newline at end of file