From 9a0ddda39bb49c43597a2ffe609ce85c95decd24 Mon Sep 17 00:00:00 2001 From: Taras Madan Date: Fri, 21 Jul 2023 11:55:08 +0200 Subject: golangci.yml: enable errorlint --- .golangci.yml | 3 +++ 1 file changed, 3 insertions(+) (limited to '.golangci.yml') diff --git a/.golangci.yml b/.golangci.yml index ebcee82c8..1a5171205 100644 --- a/.golangci.yml +++ b/.golangci.yml @@ -40,6 +40,7 @@ linters: - dupl - staticcheck - syz-linter + - errorlint disable: - bodyclose - depguard @@ -96,6 +97,8 @@ linters-settings: custom: syz-linter: path: bin/syz-linter.so + errorlint: + comparison: false # we want to use "err == iterator.Done" issues: exclude-use-default: false -- cgit mrf-deployment