| 1234567891011121314151617181920212223242526272829303132333435363738 |
- run:
- timeout: 5m
- skip-files:
- - generated.*
- issues:
- new: true
- linters:
- enable:
- - bodyclose
- - depguard
- - gocritic
- - gofmt
- - goimports
- - golint
- - goprintffuncname
- - gosimple
- - govet
- - ineffassign
- - misspell
- - nakedret
- - noctx
- - nolintlint
- - rowserrcheck
- - scopelint
- - staticcheck
- - structcheck
- - stylecheck
- - typecheck
- - unconvert
- - unparam
- - varcheck
- - whitespace
- disable:
- - deadcode
- - errcheck
- - unused
|