Skip to content

Latest commit

History

History
34 lines (27 loc) 路 1.28 KB

CODE_STANDARDS.md

File metadata and controls

34 lines (27 loc) 路 1.28 KB

Code Standards

This project uses the following code standards and specifications from:

effective go standards

View the effective go standards documentation.

golangci-lint specifications

The package golangci-lint runs several linters in one package/cmd.

View the active linters in the configuration file.

Install via macOS:

brew install golangci-lint

Install via Linux and Windows:

# binary will be $(go env GOPATH)/bin/golangci-lint
curl -sSfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | sh -s -- -b $(go env GOPATH)/bin v1.31.0
golangci-lint --version

godoc specifications

All code is written with documentation in mind. Follow the best practices with naming, examples and function descriptions.