`formatOnSave`在保存时会在文件顶部添加一个`go:build`标签。

huangapple go评论79阅读模式
英文:

`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.

huangapple
  • 本文由 发表于 2022年1月19日 22:57:05
  • 转载请务必保留本文链接:https://go.coder-hub.com/70772834.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定