Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/gohugoio/hugo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNoah Campbell <noahcampbell@gmail.com>2013-12-08 08:51:34 +0400
committerNoah Campbell <noahcampbell@gmail.com>2013-12-08 08:51:34 +0400
commit6410965b97f1a9a642c62bcbaf99fa745411e786 (patch)
treee42ebeadb3fa64b0eb32d53fdde065d7f8855870 /README.md
parent357ab956ea4ec07fa6f4098948fbda53f02294b6 (diff)
Add go fmt to contribution guidelines
Also fixed up formatting.
Diffstat (limited to 'README.md')
-rw-r--r--README.md7
1 files changed, 4 insertions, 3 deletions
diff --git a/README.md b/README.md
index b6575a23b..8e519f71a 100644
--- a/README.md
+++ b/README.md
@@ -89,8 +89,9 @@ We welcome your contributions. To make the process as seamless as possible, we
* Go ahead and fork the project and make your changes. We encourage pull requests to discuss code changes.
* When you're ready to create a pull request, be sure to:
- * Have test cases for the new code. If you have questions about how to do it, please ask in your pull request.
- * Squash your commits into a single commit. `git rebase -i`. It's okay to force update your pull request.
- * Make sure go test ./... passes, and go build completes. Our Travis CI loop will catch most things that are missing. The exception, Windows. We run on windows from time to time, but if you have access please check on a Windows machine too.
+ * Have test cases for the new code. If you have questions about how to do it, please ask in your pull request.
+ * Run `go fmt`
+ * Squash your commits into a single commit. `git rebase -i`. It's okay to force update your pull request.
+ * Make sure `go test ./...` passes, and go build completes. Our Travis CI loop will catch most things that are missing. The exception: Windows. We run on windows from time to time, but if you have access please check on a Windows machine too.
**Complete documentation is available at [Hugo Documentation](http://hugo.spf13.com).**