From dd592e70c82a76490e14afe914b9fb1fe23975b8 Mon Sep 17 00:00:00 2001 From: Alec Thomas Date: Sat, 7 Feb 2026 06:29:24 +1100 Subject: [PATCH] chore: faster lint golangci-lint is slower than running the formatters directlry --- Justfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Justfile b/Justfile index fce2930..d8718b9 100644 --- a/Justfile +++ b/Justfile @@ -28,7 +28,8 @@ lint: # Format code fmt: just --unstable --fmt - golangci-lint fmt + git ls-files | grep '\.go$' | xargs gosimports -local github.com/block -w + go fmt ./... go mod tidy # ============================================================================