How to set vscode format golang code on save?

后端 未结 2 1545
滥情空心
滥情空心 2021-02-07 09:15

I\'m using vscode with Go extensions to edit golang source code. Each time I want to format code, I have to press Ctrl-Shift-i

相关标签:
2条回答
  • 2021-02-07 10:08

    From my visual code version, i cannot use config go.formatOnSave": false.

    Then I can turn them off in settings as below:

    • Build (Turn off using go.buildOnSave setting)
    • Lint (Turn off using go.lintOnSave setting)
    • Vet (Turn off using go.vetOnSave setting)
    • Format (Turn off by adding the below in your settings):
      "[go]": {
          "editor.formatOnSave": false 
      }
      
    0 讨论(0)
  • 2021-02-07 10:19

    You should install this plugin: https://github.com/Microsoft/vscode-go. One of the options is to set "auto format" on save: go.formatOnSave": false. It uses the Golang tooling for formatting.

    0 讨论(0)
提交回复
热议问题