From 5077949a06d91bb0a229c70093fe0051404ed123 Mon Sep 17 00:00:00 2001 From: Sias Mey Date: Mon, 9 Dec 2024 15:15:07 +0200 Subject: [PATCH] chore: add output to just lint --- Justfile | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/Justfile b/Justfile index 5c221e3..59c7d12 100644 --- a/Justfile +++ b/Justfile @@ -58,6 +58,7 @@ lint: set -e set -o pipefail + echo "gofmt" output=$(gofmt -d .) if [ -n "$output" ]; then echo "$output" @@ -65,6 +66,7 @@ lint: exit 1 fi + echo "golines" output=$(go run github.com/segmentio/golines@v0.12.2 . --dry-run) if [ -n "$output" ]; then echo "$output" @@ -72,10 +74,13 @@ lint: exit 1 fi + echo "golangci-lint" go run github.com/golangci/golangci-lint/cmd/golangci-lint@v1.60.1 run + echo "file attribution" python -m tools.lint-attribution lint + echo "tf fmt" terraform fmt -recursive -check fmt: