From c1abf9e096c6150a48d4ea8c2ac9aa53f97c6abf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?V=C3=ADctor=20Cuadrado=20Juan?= Date: Tue, 4 Oct 2022 11:21:55 +0200 Subject: [PATCH] build: Disable interfacebloat linter MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Policy interface has more than 10 methods, but we aren't gonna change it. Signed-off-by: VĂ­ctor Cuadrado Juan --- .golangci.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.golangci.yml b/.golangci.yml index e1ce441bb..0afb88859 100644 --- a/.golangci.yml +++ b/.golangci.yml @@ -54,6 +54,7 @@ linters: - lll # long lines # https://github.com/golangci/golangci-lint/issues/541 - interfacer + - interfacebloat # TODO: enable once we can set some exceptions - funlen - ifshort # deprecated