-
-
Notifications
You must be signed in to change notification settings - Fork 1.4k
New issue
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
Support "gopls check" linter #686
Comments
This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions. |
This would be very useful. Currently I'm running I have to concur thought that |
@ldez any chance for re-open? Currently I'm using this script to lint with gopls. Would appreciate having |
@ldez Any reason why this go declined? |
gopls is a binary not designed to be used as a library: all the analyzers are inside an internal package and those analyzers use internal packages outside of the gopls module (yes it is possible in some cases). So for now, we will not try to overcome those limitations even if I have an idea to "fix" the problem. rule n°1 of open-source: no is temporary, yes is forever. |
Gotcha, thanks for the prompt response! Too bad they made it that way.. |
Add support for running
gopls check
via golangci-lint.gopls check
can find issues that cause compilation problems without having to compile the code.The text was updated successfully, but these errors were encountered: