Files
ko-build/.golangci.yaml
T
2023-09-11 09:41:49 -04:00

31 lines
380 B
YAML

run:
timeout: 5m
issues:
exclude-rules:
- path: test # Excludes /test, *_test.go etc.
linters:
- gosec
linters:
enable:
- asciicheck
- errorlint
- gofmt
- gosec
- goimports
- importas
- prealloc
- revive
- misspell
- stylecheck
- tparallel
- unconvert
- unparam
- whitespace
disable:
- errcheck
- depguard
- deadcode