diff --git a/.golangci.yml b/.golangci.yml index 1c478bf..6c32523 100644 --- a/.golangci.yml +++ b/.golangci.yml @@ -20,6 +20,10 @@ linters: errcheck: check-type-assertions: true + staticcheck: + checks: + - "-SA5011" # t.Fatal stops via runtime.Goexit; nil deref after guard is safe + govet: enable-all: true disable: