1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-09-30 15:56:28 -04:00
v2fly/.github/linters/.golangci.yml

47 lines
661 B
YAML
Raw Normal View History

2020-09-04 01:38:15 -04:00
run:
timeout: 5m
2020-09-09 05:50:36 -04:00
skip-files:
- generated.*
2020-09-04 01:38:15 -04:00
issues:
new: true
exclude-rules:
- path: _test\.go
linters:
- errcheck
- gosec
2020-09-04 01:38:15 -04:00
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
2020-10-09 10:06:40 -04:00
disable:
- deadcode