2019-04-02 18:21:27 -07:00
|
|
|
linters:
|
|
|
|
enable:
|
2019-11-14 12:04:50 -08:00
|
|
|
- bodyclose
|
|
|
|
- deadcode
|
|
|
|
- depguard
|
|
|
|
- dogsled
|
2019-04-02 18:21:27 -07:00
|
|
|
- errcheck
|
2019-11-14 12:04:50 -08:00
|
|
|
- goconst
|
|
|
|
- gocritic
|
|
|
|
- gofmt
|
|
|
|
- goimports
|
2019-04-02 18:21:27 -07:00
|
|
|
- golint
|
2019-11-14 12:04:50 -08:00
|
|
|
- gosec
|
|
|
|
- gosimple
|
|
|
|
- govet
|
2019-04-02 18:21:27 -07:00
|
|
|
- ineffassign
|
2019-11-14 12:04:50 -08:00
|
|
|
- interfacer
|
2019-04-02 18:21:27 -07:00
|
|
|
- misspell
|
2019-11-14 12:04:50 -08:00
|
|
|
- maligned
|
|
|
|
- nakedret
|
|
|
|
- prealloc
|
|
|
|
- scopelint
|
|
|
|
- staticcheck
|
|
|
|
- structcheck
|
|
|
|
- stylecheck
|
|
|
|
- typecheck
|
|
|
|
- unconvert
|
|
|
|
- unused
|
|
|
|
- varcheck
|
|
|
|
|
|
|
|
issues:
|
|
|
|
exclude-rules:
|
|
|
|
- text: "Use of weak random number generator"
|
|
|
|
linters:
|
|
|
|
- gosec
|
|
|
|
- text: "ST1003:"
|
|
|
|
linters:
|
|
|
|
- stylecheck
|
|
|
|
|
2019-04-02 18:21:27 -07:00
|
|
|
linters-settings:
|
2019-11-14 12:04:50 -08:00
|
|
|
dogsled:
|
|
|
|
max-blank-identifiers: 3
|
|
|
|
maligned:
|
|
|
|
# print struct with more effective memory layout or not, false by default
|
|
|
|
suggest-new: true
|
2019-04-02 18:21:27 -07:00
|
|
|
errcheck:
|
2019-11-14 12:04:50 -08:00
|
|
|
# report about assignment of errors to blank identifier: `num, _ := strconv.Atoi(numStr)`;
|
|
|
|
# default is false: such cases aren't reported by default.
|
|
|
|
check-blank: true
|
2019-04-02 18:21:27 -07:00
|
|
|
golint:
|
2019-11-14 12:04:50 -08:00
|
|
|
# minimal confidence for issues, default is 0.8
|
|
|
|
min-confidence: 0
|
|
|
|
prealloc:
|
|
|
|
# XXX: we don't recommend using this linter before doing performance profiling.
|
|
|
|
# For most programs usage of prealloc will be a premature optimization.
|
|
|
|
|
|
|
|
# Report preallocation suggestions only on simple loops that have no returns/breaks/continues/gotos in them.
|
|
|
|
# True by default.
|
|
|
|
simple: false
|
|
|
|
range-loops: true # Report preallocation suggestions on range loops, true by default
|
|
|
|
for-loops: true # Report preallocation suggestions on for loops, false by default
|