1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-06-30 19:15:23 +00:00
v2fly/.github/linters/.golangci.yml
2020-10-09 22:06:40 +08:00

47 lines
661 B
YAML

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