From 67c0b74e705b8a5bd364d69ee4f5e64bcaa03db4 Mon Sep 17 00:00:00 2001 From: 1riatsila1 Date: Mon, 9 Dec 2024 12:24:16 +0200 Subject: [PATCH] more specific output --- Justfile | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/Justfile b/Justfile index 04ee170..7d82947 100644 --- a/Justfile +++ b/Justfile @@ -56,6 +56,7 @@ tidy-client: lint: #!/usr/bin/env bash + echo "gofmt -d ." output=$(gofmt -d .) if [ -n "$output" ]; then echo "$output" @@ -63,6 +64,7 @@ lint: exit 1 fi + echo "golines . --dry-run" output=$(go run github.com/segmentio/golines@v0.12.2 . --dry-run) if [ -n "$output" ]; then echo "$output" @@ -70,10 +72,13 @@ lint: exit 1 fi + echo "golangci-lint run" go run github.com/golangci/golangci-lint/cmd/golangci-lint@v1.60.1 run + echo "python -m tools.lint-attribution lint" python -m tools.lint-attribution lint + echo "terraform fmt -recursive -check" terraform fmt -recursive -check fmt: