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

build(lint): use revive instead of golint #1801

Merged

Commits on Sep 9, 2021

  1. Use revive instead of golint

    The golint was officially deprecated.
    golang/go#38968
    
    We have been using golint via golangci-lint and golangci-lint now
    recommends using revive instead of golint.
    https://golangci-lint.run/usage/linters/
    > golint: The repository of the linter has been archived by the owner.
    > Replaced by revive.
    
    The revive is a drop-in replacement of golint. I think switching to
    revive is a reasonable choice to check the same rules for free.
    https://github.com/mgechev/revive
    minamijoyo committed Sep 9, 2021
    Configuration menu
    Copy the full SHA
    c8bed6a View commit details
    Browse the repository at this point in the history

Commits on Sep 10, 2021

  1. Configuration menu
    Copy the full SHA
    b0fedf7 View commit details
    Browse the repository at this point in the history