1
0
mirror of https://github.com/ko-build/ko.git synced 2025-02-13 19:42:26 +02:00
ko-build/.golangci.yaml
Matt Moore b3645fa096
Add a handful of files to trigger more analyses. (#197)
`.codecov.yaml` - Enable codecov.io coverage reports
`.golangci.yaml` - Enable the enumerated checks in golangci-lint
`boilerplate.*.txt` - Enable file header boilerplate checks for these extensions
2020-09-24 20:15:21 -07:00

42 lines
622 B
YAML

run:
timeout: 5m
build-tags:
- e2e
- performance
- probe
- preupgrade
- postupgrade
- postdowngrade
- istio
skip-dirs:
- pkg/client
skip-files:
- ".pb.go$"
linters:
enable:
- asciicheck
- gosec
- prealloc
- stylecheck
- unconvert
- unparam
disable:
- errcheck
issues:
exclude-rules:
- path: test # Excludes /test, *_test.go etc.
linters:
- gosec
- unparam
# Allow source and sink receivers in conversion code for clarity.
- path: _conversion\.go
text: "ST1016:"
linters:
- stylecheck