Skip to content
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 v1.32.0 #21

Merged
merged 1 commit into from
Oct 30, 2020

Commits on Oct 30, 2020

  1. Update to golangci-lint v1.32.0

    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 committed Oct 30, 2020
    Configuration menu
    Copy the full SHA
    4ba3beb View commit details
    Browse the repository at this point in the history