Here's the problem.
I want to format my golang files when they get saved, so I have this in my user settings (JSON) file.
"[go]": {
"editor.formatOnSave": true,
},
But as a side effect, whenever I save a file that has a // +build integration
tag at the very top of it, VSCode ends up adding //go:build integration
to the top of the file, in addition to formatting the file.
Any clues how I can disable this behavior?