Description
Is your feature request related to a problem? Please describe.
I'm working on both the Go toolchain and my own projects. To work in the Go repo, you need to use the version of Go being edited in order for things to work. Every time I open a project, I get a popup that tells me that my Go version has changed and that I should be recompiling my tools. I know that I don't (since I use gopls, and manage my installed tools pretty carefully), so this message doesn't really help me, and I'd like to be able to hide these messages.
Describe the solution you'd like
Some sort of option to disable the notification, or any and all of tools checks (as I manage them myself).
Describe alternatives you've considered
VS Code doesn't have a way to block the messages for an extension, so that isn't an option, and there's no away around the checks at the moment. I have both:
"go.toolsManagement.checkForUpdates": "off",
"go.toolsManagement.autoUpdate": false,
But these don't get rid of everything.
Additional context
N/A