12345678910111213141516171819202122 |
- linters:
- fast: true
- enable:
- - golint
- - govet
- - gosimple
- - goconst
- - goimports
- - staticcheck
- disable:
- - errcheck
- issues:
- exclude-rules:
- - path: _test\.go
- linters:
- - goconst
- # False positives on CGO generated code
- - linters:
- - staticcheck
- text: "SA4000:"
|