Lint on Save With VS Code Official Golang Extension

Lint on Save With VS Code Official Golang Extension

The post Lint on Save With VS Code Official Golang Extension appeared first on Qvault.

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.

VS Code – Lint on save

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

official golang vs code extension

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.

Why goimports and not gofmt?

Simply put, goimports does everything gofmt does but additionally formats import statements. I like that.

Not Working?

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.

Thanks For Reading

Hit me up on twitter @wagslane if you have any questions or comments.

Take your coding career to the next level with courses on Qvault Classroom

Follow me on Dev.to: wagslane

The post Lint on Save With VS Code Official Golang Extension appeared first on Boot.dev.