mirror of
https://github.com/ko-build/ko.git
synced 2025-02-13 19:42:26 +02:00
`.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
42 lines
622 B
YAML
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
|