1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-06-26 01:15:38 +00:00

Refine linter (#203)

* Linter: remove gochecknoinits plugin
* Linter: do NOT run some plugins on test files
This commit is contained in:
Loyalsoldier 2020-09-18 17:24:01 +08:00 committed by GitHub
parent 782909b9f3
commit df2d296ffc
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -4,6 +4,19 @@ run:
skip-files:
- generated.*
issues:
new: true
exclude-rules:
- path: _test\.go
linters:
- gocyclo
- errcheck
- dupl
- gosec
- goconst
- funlen
- lll
linters:
enable:
- bodyclose
@ -14,7 +27,6 @@ linters:
- errcheck
- exhaustive
- funlen
- gochecknoinits
- goconst
- gocritic
- gocyclo
@ -44,6 +56,3 @@ linters:
- unused
- varcheck
- whitespace
issues:
new: true