Golang automatic code formatting : Code like a Pro

Why Format your code?

Implementing Golines: a Golang formatter

  • Installing golines
go install github.com/segmentio/golines@latest
  • Using golines from VSCode
  • Go into the VSCode settings menu, scroll down to the section for the Run on Save extension, click the Edit in settings.json link
  • Set the emeraldwalk.runonsave key as follows
  • "emeraldwalk.runonsave": { "commands": [ { "match": "\\.go$", "cmd": "golines ${file} -w" } ] }
  • Save the settings and restart VSCode
  • (optional) using golines from CLI
golines -w "path to *.go files"

Summary

from

myMap := map[string]string{"first key": "first value", "second key": "second value", "third key": "third value", "fourth key": "fourth value", "fifth key": "fifth value"}

To

myMap := map[string]string{
"first key": "first value",
"second key": "second value",
"third key": "third value",
"fourth key": "fourth value",
"fifth key": "fifth value",
}

--

--

Senior Principal Architect & Developer Evangelist @ Red Hat ♦ Loves K8s, OpenShift, Cloud-Native, Serverless, Hybrid-Multi-Cloud, Distributed Systems

Get the Medium app

A button that says 'Download on the App Store', and if clicked it will lead you to the iOS App store
A button that says 'Get it on, Google Play', and if clicked it will lead you to the Google Play store
Karan Singh

Senior Principal Architect & Developer Evangelist @ Red Hat ♦ Loves K8s, OpenShift, Cloud-Native, Serverless, Hybrid-Multi-Cloud, Distributed Systems