We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3561754 commit 435404fCopy full SHA for 435404f
docs/style-guides/go/README.md
@@ -2,7 +2,19 @@
2
3
> Style guide for programming in Go.
4
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.
9
-TODO
10
-* [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