From 8d644889f2c50175a1e3731f9086600698d62cba Mon Sep 17 00:00:00 2001 From: Vladislav Byrgazov Date: Mon, 18 Nov 2024 12:15:36 +0500 Subject: [PATCH] Add lll linter Signed-off-by: Vladislav Byrgazov --- .golangci.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.golangci.yaml b/.golangci.yaml index 6213b6e..02b3413 100644 --- a/.golangci.yaml +++ b/.golangci.yaml @@ -67,6 +67,8 @@ linters-settings: deny: - pkg: "errors" desc: "Please use \"github.com/pkg/errors\" instead of \"errors\" in go imports" + lll: + line-length: 280 misspell: locale: US unparam: @@ -134,6 +136,7 @@ linters: - gosimple - govet - ineffassign + - lll - misspell - nakedret - copyloopvar