Skip to content

Commit 435404f

Browse files
committed
Update style guide
1 parent 3561754 commit 435404f

File tree

1 file changed

+14
-2
lines changed

1 file changed

+14
-2
lines changed

docs/style-guides/go/README.md

Lines changed: 14 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,19 @@
22

33
> Style guide for programming in Go.
44
5+
* Follow the prescriptions set forth in [Effective Go][effective-go].
6+
* Use [govet][govet] to find errors not caught by compilers.
7+
* Use [golint][golint] to lint source code.
8+
* Use [gofmt][gofmt] to format Go programs before committing to source control.
59

6-
TODO
710

8-
* [golint](https://github.com/golang/lint)
11+
<section class="links">
12+
13+
[effective-go]: https://golang.org/doc/effective_go.html
14+
[govet]: https://golang.org/cmd/vet/
15+
[golint]: https://github.com/golang/lint
16+
[gofmt]: https://golang.org/cmd/gofmt/
17+
18+
</section>
19+
20+
<!-- /.links -->

0 commit comments

Comments
 (0)