From 6e6e6cafb1cd4f26c8e1701bf780df1f25f26266 Mon Sep 17 00:00:00 2001 From: Vladislav Byrgazov Date: Tue, 19 Nov 2024 17:56:54 +0500 Subject: [PATCH] Disable lll linter Signed-off-by: Vladislav Byrgazov --- .golangci.yaml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/.golangci.yaml b/.golangci.yaml index 02b3413..442dc36 100644 --- a/.golangci.yaml +++ b/.golangci.yaml @@ -67,8 +67,9 @@ linters-settings: deny: - pkg: "errors" desc: "Please use \"github.com/pkg/errors\" instead of \"errors\" in go imports" - lll: - line-length: 280 + # TODO - enable lll config https://github.com/networkservicemesh/sdk-kernel/issues/698 + # lll: + # line-length: 160 misspell: locale: US unparam: @@ -136,7 +137,7 @@ linters: - gosimple - govet - ineffassign - - lll + # - lll - misspell - nakedret - copyloopvar