Go has hard opinions about how you should style and format your code. The big upside of this is that you don't need to spend hours setting up tools like ESLint, Prettier, JSLint, etc. That said, in order to take advantage of the styling and listing tools available in the toolchain, you need a dev environment that makes them easy to use.
I'm currently a VS Code fan. I don't like to think about code styling. I like to type a bunch of code with incorrect spacing and press (ctrl+s) or (cmd+s) to save my code and auto-format it.
First, make sure you have the latest version of Go installed on your machine (as of time of writing, 1.14)
Next install the Official Golang VS Code Plugin
Next open your settings.json file in VS Code. These settings can be specific to in a single project, workspace or your entire machine.
Add the following settings:
{
"go.lintOnSave": "file",
"go.formatTool": "goimports",
"go.useLanguageServer": true,
"[go]": {
"editor.formatOnSave": true,
"editor.codeActionsOnSave": {
"source.organizeImports": true
}
},
"go.docsTool": "gogetdoc"
}
If you don't like any of these settings, you can click the pencil icon to the left of the line (assuming you've opened settings.json in VS Code). It will give a dropdown menu with additional options.
Simply put, goimports does everything gofmt does but additionally formats import statements. I like that.
If it still isn't working, you likely need to reload your VS Code window and/or install the missing tools that VS Code is prompting you to install via popups in the bottom-right of the editor.
I will do my best to keep this guide up to date. Let me know if it isn't working for you via Twitter or the Qvault Discord.
Previously published at https://qvault.io/2020/06/30/lint-on-save-with-vs-code-official-golang-extension/