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