Curated backend podcasts, videos and articles. If you're looking to become a backend developer, or just stay up-to-date with the latest backend technologies and trends, you found the right place. Subscribe below to get a copy of our newsletter, The Boot.dev Beat, each month in your inbox.

Setting up your VS Code environment to enforce the standard linting and formatting rules can save you a ton of time.

I use the following settings: { // format all files on save if a formatter is available "editor.formatOnSave": true, // I use "goimports" instead of "gofmt" // because it does the same thing but also formats imports "go.formatTool": "goimports", // go-specific settings "[go]": {"editor.formatOnSave": true, "editor.codeActionsOnSave": {"source.organizeImports": true }}, "[go.mod]": {"editor.formatOnSave": true, "editor.codeActionsOnSave": {"source.organizeImports": true }}, }

Related Articles