From f5a5437917680e9aac1a068155f4a64a3ccd72fd Mon Sep 17 00:00:00 2001 From: Juan Font Alonso Date: Sun, 13 Nov 2022 17:02:42 +0100 Subject: [PATCH] disable interfacebloat linter --- .golangci.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.golangci.yaml b/.golangci.yaml index 9c4d8d5f..9902971c 100644 --- a/.golangci.yaml +++ b/.golangci.yaml @@ -36,6 +36,9 @@ linters: - makezero - maintidx + # Limits the methods of an interface to 10. We have more in integration tests + - interfacebloat + # We might want to enable this, but it might be a lot of work - cyclop - nestif