Join GitHub today
GitHub is home to over 50 million developers working together to host and review code, manage projects, and build software together.
Sign upgofmt the code #5
Closed
Comments
yevgenypats
added a commit
that referenced
this issue
Aug 2, 2019
|
Good catch. I though it was already enabled in my IDE. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
For Go code-bases its strongly encouraged to format the code with
gofmt.Most editors that support Go do it automatically.
To reformat all files:
find . -name "*.go" | xargs gofmt -w