英文:
`formatOnSave` adds a `go:build` tag at the top of the file on save
问题
以下是翻译好的内容:
这是问题所在。
我想在保存时格式化我的golang文件,所以我在我的用户设置(JSON)文件中添加了以下内容。
"go": {
"editor.formatOnSave": true,
},
但是作为副作用,每当我保存一个文件时,如果文件的顶部有一个// +build integration
标签,VSCode会在文件顶部添加//go:build integration
,除了格式化文件之外。
有什么办法可以禁用这个行为吗?
英文:
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?
答案1
得分: 1
我明白了,以下是翻译好的内容:
我承认我错了,这确实是最新且更好的行为。谢谢JimB和The Fool。
英文:
I stand corrected that this is indeed the latest, better behavior. Thanks JimB and The Fool.
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论