diff options
Diffstat (limited to '.golangci.yaml')
-rw-r--r-- | .golangci.yaml | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/.golangci.yaml b/.golangci.yaml index 71397cc..97ad786 100644 --- a/.golangci.yaml +++ b/.golangci.yaml @@ -13,6 +13,7 @@ linters: - mnd # it's a bit ridiculous to replace all of them - nakedret # patterns should be consistent - nonamedreturns # i like named returns + - wrapcheck # wrapping all errors is just not necessary - maintidx # e - nestif # e - gocognit # e @@ -22,8 +23,6 @@ linters: - funlen # e - wsl # e - nlreturn # e - - wrapcheck # e - - varnamelen # e issues: max-issues-per-linter: 0 |