Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
The currently latest `golangci-lint` version 1.32.0 [1] introduced new linters that have been added to this template: 1. wrapcheck [2] — Checks that errors returned from external packages are wrapped. This linter is disabled by default, but has been enabled for this template to help tp reduce error context loss. 2. [errorlint][3] — Helps to make more efficient use of the error wrapping scheme introduced in Go 1.13. This linter is disabled by default, but has been enabled for this template to help to use Go's new error handling concept. 3. [tparallel][4] — Detects inappropriate usage of `t.Parallel()` method in Go tests. This linter is disabled by default, but has been enabled for this template to help to prevent parallelism errors in tests. [1]: https://github.com/golangci/golangci-lint/releases/tag/v1.32.0 [2]: https://github.com/tomarrell/wrapcheck [3]: https://github.com/polyfloyd/go-errorlint [4]: https://github.com/moricho/tparallel GH-20
- Loading branch information