1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-06-28 10:15:23 +00:00
v2fly/.github/linters/.golangci.yml
2023-09-24 22:37:35 +01:00

61 lines
995 B
YAML

run:
timeout: 5m
skip-files:
- generated.*
- .pb.go
issues:
new: true
exclude-rules:
- linters:
- staticcheck
text: "SA1019:"
- linters:
- stylecheck
text: "ST1016:"
linters:
enable:
- asciicheck
- bodyclose
- depguard
- gocritic
- gofmt
- gofumpt
- goimports
- goprintffuncname
- gosimple
- govet
- ineffassign
- misspell
- nakedret
- revive
- rowserrcheck
- staticcheck
- structcheck
- stylecheck
- typecheck
- unconvert
- unparam
- varcheck
- whitespace
disable:
- deadcode
- errcheck
- unused
linters-settings:
goimports:
local-prefixes: github.com/v2fly/v2ray-core
revive:
rules:
- name: blank-imports
severity: warning
disabled: true
depguard:
rules:
Main:
deny:
- pkg: "github.com/pkg/errors"
desc: Should be replaced by standard lib errors package