From 79295fc5560a0b14d110e02f6a424446ecc58807 Mon Sep 17 00:00:00 2001 From: ramin Date: Thu, 18 Jul 2024 10:00:09 +0100 Subject: [PATCH] ci(lint): correct cfmt argument in make lint (#3562) --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index c05c777f03..76ccd7b156 100644 --- a/Makefile +++ b/Makefile @@ -123,7 +123,7 @@ lint: lint-imports @echo "--> Running linter" @golangci-lint run @markdownlint --config .markdownlint.yaml '**/*.md' - @cfmt -m=100 ./... + @cfmt --m=120 ./... .PHONY: lint ## test-unit: Running unit tests