-
-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Update to golangci-lint version 1.32.0 #20
Milestone
Comments
svengreb
added a commit
that referenced
this issue
Oct 30, 2020
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
svengreb
added a commit
that referenced
this issue
Oct 30, 2020
svengreb
added a commit
that referenced
this issue
Oct 30, 2020
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
svengreb
added a commit
that referenced
this issue
Oct 30, 2020
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 Closes GH-20
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
The currently latest
golangci-lint
version 1.32.0 introduced new linters that will be added to this template:This linter is disabled by default, but will be enabled for this template to help tp reduce error context loss.
This linter is disabled by default, but will be enabled for this template to help to use Go's new error handling concept.
t.Parallel()
method in Go tests.This linter is disabled by default, but will be enabled for this template to help to prevent parallelism errors in tests.
The text was updated successfully, but these errors were encountered: