How to set vscode format golang code on save?

后端 未结 2 1554
滥情空心
滥情空心 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 
      }
      

提交回复
热议问题