Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Disable "errorlint" to prevent false-positive errors
In GH-21 [1] "golangci-lint" was updated to the currently latest version 1.32.0 [2] which introduced the errorlint [3] that has been enabled for this template repository. As it turns out it causes a lot of false-positives errors for code lines that explicitly do not wrap the error to prevent it become part of the public API. Therefore the linter has been disabled again because the update also introduced the new wrapcheck [4] linter which helps to prevent that errors from external packages are exposed to the public API. [1]: #21 [2]: https://github.com/golangci/golangci-lint/releases/tag/v1.32.0 [3]: https://github.com/polyfloyd/go-errorlint [4]: https://github.com/tomarrell/wrapcheck GH-39
- Loading branch information