From a6796fd599a9ab9ea382a8007ceac2009fbe445d Mon Sep 17 00:00:00 2001 From: Denis Bilenko Date: Mon, 20 Jan 2025 10:18:00 +0100 Subject: [PATCH] Run 'ruff format' in quiet mode Otherwise it prints "83 files left unchanged". --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 1ab2474062..4b66c92549 100644 --- a/Makefile +++ b/Makefile @@ -14,7 +14,7 @@ lintcheck: # formatting/goimports will not be applied by 'make lint'. However, it will be applied by 'make fmt'. # If you need to ensure that formatting & imports are always fixed, do "make fmt lint" fmt: - ruff format + ruff format -q golangci-lint run --enable-only="gofmt,gofumpt,goimports" --fix ./... test: