From 874f0bcb9d75f85ebbba69216f2a92cd2517f3cf Mon Sep 17 00:00:00 2001 From: Ville Vesilehto Date: Fri, 31 Jan 2025 22:04:45 +0200 Subject: [PATCH] chore: add nilness check to govet linter * Add nilness check to govet linter configuration See #1041 for an example Signed-off-by: Ville Vesilehto --- .golangci.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.golangci.yaml b/.golangci.yaml index 6ad99263e..c49df48ee 100644 --- a/.golangci.yaml +++ b/.golangci.yaml @@ -1,6 +1,9 @@ linters-settings: misspell: locale: US + govet: + enable: + - nilness linters: disable-all: true