From 1f9ece084de4082c7373741c9bf1b13894fce6e7 Mon Sep 17 00:00:00 2001 From: "Adolfo Garcia Veytia (puerco)" Date: Fri, 25 Aug 2023 12:07:02 -0600 Subject: [PATCH] Bump funlen linter to 72 This commit bumps the maximum function length to 72 to accomodate the new flag in setRootFlags. Signed-off-by: Adolfo Garcia Veytia (puerco) --- .golangci.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.golangci.yaml b/.golangci.yaml index 184f0f8ec2d4..b019dbf5f9b2 100644 --- a/.golangci.yaml +++ b/.golangci.yaml @@ -44,7 +44,7 @@ linters-settings: # Checks the number of lines in a function. # If lower than 0, disable the check. # Default: 60 - lines: 70 + lines: 72 # Checks the number of statements in a function. # If lower than 0, disable the check. # Default: 40