forked from milvus-io/milvus
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.golangci.yml
90 lines (86 loc) · 2.09 KB
/
.golangci.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
run:
go: '1.18'
skip-dirs:
- build
- configs
- deployments
- docs
- scripts
- internal/core
linters:
disable-all: true
enable:
- typecheck
- goimports
- misspell
- govet
- ineffassign
- gosimple
- gosec
- revive
- durationcheck
- unconvert
- forbidigo
- depguard
# - gocritic
linters-settings:
revive:
rules:
- name: unused-parameter
disabled: true
misspell:
locale: US
gocritic:
enabled-checks:
- ruleguard
settings:
ruleguard:
failOnError: true
rules: 'rules.go'
depguard:
rules:
main:
deny:
- pkg: 'errors'
desc: not allowd, use github.com/cockroachdb/errors
- pkg: 'github.com/pkg/errors'
desc: not allowd, use github.com/cockroachdb/errors
- pkg: 'github.com/pingcap/errors'
desc: not allowd, use github.com/cockroachdb/errors
- pkg: 'golang.org/x/xerrors'
desc: not allowd, use github.com/cockroachdb/errors
- pkg: 'github.com/go-errors/errors'
desc: not allowd, use github.com/cockroachdb/errors
forbidigo:
forbid:
- '^time\.Tick$'
#- 'fmt\.Print.*' WIP
issues:
exclude-use-default: false
exclude:
- should have a package comment
- should have comment
- should be of the form
- should not use dot imports
- which can be annoying to use
# Binds to all network interfaces
- G102
# Errors unhandled
- G104
# file/folder Permission
- G301
- G302
# Potential file inclusion via variable
- G304
# Deferring unsafe method like *os.File Close
- G307
# TLS MinVersion too low
- G402
# Use of weak random number generator math/rand
- G404
# Maximum issues count per one linter. Set to 0 to disable. Default is 50.
max-issues-per-linter: 0
# Maximum count of issues with the same text. Set to 0 to disable. Default is 3.
max-same-issues: 0
service:
golangci-lint-version: 1.27.0 # use the fixed version to not introduce new linters unexpectedly