Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save kaiohken1982/21d94409b8f88128a62f6a6e0c386a7b to your computer and use it in GitHub Desktop.
Save kaiohken1982/21d94409b8f88128a62f6a6e0c386a7b to your computer and use it in GitHub Desktop.
VSCODE GO plugin config no code fix on save
/**
* In VSCODE l'estensione GO elimina il codice inutilizzato
* al salvataggio, per disattivare questo comportamento,
* modificare settings.json come qui di seguito
*
* File AppData/Roaming/Code/User/settings.json
*/
"[go]": {
"editor.formatOnSave": false,
"editor.codeActionsOnSave": {
"source.organizeImports": false
},
},
"go.formatTool": "gofmt",
"editor.codeActionsOnSave": {
"source.fixAll": false
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment