v2fly/.github/linters/.golangci.yml

40 lines
555 B
YAML

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