28 lines
351 B
YAML
28 lines
351 B
YAML
run:
|
|
go: "1.20"
|
|
timeout: 5m
|
|
|
|
linters:
|
|
enable:
|
|
- govet
|
|
- errcheck
|
|
- staticcheck
|
|
- gosimple
|
|
- ineffassign
|
|
- typecheck
|
|
- gofmt
|
|
- goimports
|
|
- misspell
|
|
- unconvert
|
|
- gocritic
|
|
|
|
disable:
|
|
- depguard
|
|
- wsl
|
|
- funlen
|
|
|
|
issues:
|
|
exclude-rules:
|
|
- path: _test\.go
|
|
linters:
|
|
- errcheck |