-
Notifications
You must be signed in to change notification settings - Fork 17.9k
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
x/tools/gopls: detect tools.go files, and suppress warning #69072
Comments
Yes, the error and warning messages come from the gopls (the language server). The warning message ("No packages found for open file ...") seems intentional, but I think we can consider different wording and info-level. The error message ("import X is a program, not an importable package") is not great for cc @findleyr |
I'd be happy to accept a change suppressing errors that match this pattern. The heuristic seems accurate enough. Moving this to the Go issue tracker as a gopls issue. A couple quick notes:
|
With 1.24 adding first class support for tools in the go.mod file, this issue is a much lower priority. We will probably not resolve the current issue, instead letting folks take advantage of the new tool directive. (We have extremely limited resources, and adding a workaround for an obsolete convention unfortunately ranks pretty low). |
This is a much cleaner solution overall and I really like it! Thank you guys for adding this support directly to go.mod! If I'm reading this correctly, basically instead of adding a tools.go file, the recommendation from 1.24 onwards would be to do |
Yep, that's correct (though I think you need to add |
@Jyosua yes that's right. Though you may need to add |
I've been looking for a way to fix this for quite a bit of time and nothing I've tried has worked. I'm using
oapi-codegen
to generate boilerplate for my webserver. The authors of this library recommend the tools.go pattern for managing the dependency, so thatgo.mod
can act as the single source of truth for versioning. For transparency, their readme recommends this here. Doing this actually works -- I can rungo generate
just fine and my code builds. However, VSCode insists on showing an error and warning in this tools.go file, marking the file and the module folder red:This is driving me crazy. I'd like to at least suppress these, but I can't find any way to do so. I've tried using the
lintFlags
to exclude it, but it appears to begopls
and notstaticcheck
, so this doesn't do anything. I can't find agopls
configuration setting that will allow me to ignore this file or any issues with it, either.For what it's worth, someone else noticed the same thing with a different library in this issue.
What version of Go, VS Code & VS Code Go extension are you using?
Version Information
go version
to get version of Go from the VS Code integrated terminal.gopls -v version
to get version of Gopls from the VS Code integrated terminal.code -v
orcode-insiders -v
to get version of VS Code or VS Code Insiders.Go: Locate Configured Go Tools
command.Share the Go related settings you have added/edited
The text was updated successfully, but these errors were encountered: