wasmd/.golangci.yml

62 lines
1.5 KiB
YAML
Raw Normal View History

2019-04-02 18:21:27 -07:00
linters:
enable:
- bodyclose
- deadcode
- depguard
- dogsled
2019-04-02 18:21:27 -07:00
- errcheck
- goconst
- gocritic
- gofmt
- goimports
2019-04-02 18:21:27 -07:00
- golint
- gosec
- gosimple
- govet
2019-04-02 18:21:27 -07:00
- ineffassign
- interfacer
2019-04-02 18:21:27 -07:00
- misspell
- 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:
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:
# 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:
# 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