Go formatting convention: tab indentation for .go files via gofmt, with LF line endings and UTF-8 for all files.
Effective Go — Formatting↗
[
]
chevron-down
trash-can
if(true) { ··return; }
if(true) {\n ··return;\n }
Encoding: UTF-8 No byte order mark
if(true) { ··return; }\n
Newline created after 80 characters
First line in file:
content-copycopy
downloaddownload