From 7034793d1d64ce669dc2a10c9ae2ddb8a212defb Mon Sep 17 00:00:00 2001 From: Denis Bilenko Date: Mon, 20 Jan 2025 10:26:29 +0100 Subject: [PATCH] Run 'ruff format' in quiet mode (#2187) Otherwise it prints "83 files left unchanged". --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 1ab247406..4b66c9254 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: