1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2025-02-20 23:47:21 -05:00
v2fly/.github/linters/.golangci.yml

41 lines
571 B
YAML
Raw Normal View History

2020-09-04 13:38:15 +08:00
run:
timeout: 5m
2020-09-09 17:50:36 +08:00
skip-files:
- generated.*
2020-09-04 13:38:15 +08:00
issues:
new: true
exclude-rules:
- path: _test\.go
linters:
- scopelint
2020-09-04 13:38:15 +08:00
linters:
enable:
- bodyclose
- depguard
- gocritic
- gofmt
- goimports
- golint
- goprintffuncname
- gosimple
- govet
- ineffassign
- misspell
- nakedret
- rowserrcheck
- scopelint
- staticcheck
- structcheck
- stylecheck
- typecheck
- unconvert
- unparam
- varcheck
- whitespace
2020-10-09 22:06:40 +08:00
disable:
- deadcode
2020-10-10 00:19:09 +08:00
- errcheck
- unused