From 8d53003cf0d6c88d40cedd066928573fec9095bc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B6rg=20Thalheim?= Date: Sat, 11 Jun 2022 12:05:03 +0200 Subject: [PATCH] add lint task --- justfile | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/justfile b/justfile index 98d282a..7acb11b 100644 --- a/justfile +++ b/justfile @@ -9,6 +9,11 @@ fmt: build: go build . +# Run linters not covered by treefmt +lint: + golangci-lint run + mypy ./tests + # Run unitests test: pytest -s ./tests