diff options
| author | Taras Madan <tarasmadan@google.com> | 2023-07-21 11:55:08 +0200 |
|---|---|---|
| committer | Taras Madan <tarasmadan@google.com> | 2023-07-24 09:12:13 +0000 |
| commit | 9a0ddda39bb49c43597a2ffe609ce85c95decd24 (patch) | |
| tree | 237be3bfe143cb57d523c448f248875c0de92fae /.golangci.yml | |
| parent | a36fe24b8383f6cd9b3519cd3eabdb9675d8992d (diff) | |
golangci.yml: enable errorlint
Diffstat (limited to '.golangci.yml')
| -rw-r--r-- | .golangci.yml | 3 |
1 files changed, 3 insertions, 0 deletions
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 |
