Skip to content

Latest commit

History

History
17 lines (12 loc) 路 430 Bytes

CONTRIBUTING.md

File metadata and controls

17 lines (12 loc) 路 430 Bytes

Contributing to Chunk

You might need to install Staticcheck if you don't have it in your system yet.

Then, write and run tests, and use the auto-format as well as the linter tools:

$ gofmt -w ./
$ staticcheck ./...
$ go test -race ./...

To make it easy for you, we have pre-commit hooks set up:

$ git config core.hooksPath .githooks