forked from bufbuild/buf
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.golangci.yml
186 lines (186 loc) · 5.99 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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
run:
skip-dirs-use-default: false
linters-settings:
errcheck:
check-type-assertions: true
forbidigo:
forbid:
# Use private/pkg/thread.Parallelize
- '^errgroup\.'
# Use private/pkg/command.Runner
- '^exec\.Cmd$'
- '^exec\.Command$'
- '^exec\.CommandContext$'
# This should only be used by github.com/bufbuild/buf-language-server
- '^bufcli\.NewModuleReaderAndCreateCacheDirsWithExternalPaths'
# os.Rename does not work across filesystem boundaries
# See https://github.com/bufbuild/buf/issues/639
- '^os\.Rename$'
# Ban debug statements
- '^fmt\.Print'
- '^log\.'
- '^print$'
- '^println$'
importas:
alias:
- pkg: github.com/bufbuild/buf/private/gen/proto/go/buf/alpha/image/v1
alias: imagev1
- pkg: github.com/bufbuild/buf/private/gen/proto/go/buf/alpha/module/v1
alias: modulev1
- pkg: github.com/bufbuild/buf/private/gen/proto/go/buf/alpha/registry/v1alpha1
alias: registryv1alpha1
linters:
enable:
- asciicheck
- bidichk
- bodyclose
- containedctx
# - contextcheck
- decorder
- depguard
- dogsled
- errcheck
- execinquery
- exportloopref
- forbidigo
- forcetypeassert
- gci
- gochecknoinits
- gofmt
- goheader
# - goimports
- gomodguard
- goprintffuncname
- gosec
- gosimple
- govet
- grouper
- importas
- ineffassign
- logrlint
- makezero
- misspell
- nakedret
- nilerr
- nolintlint
- nosprintfhostport
- predeclared
- promlinter
- reassign
- rowserrcheck
- staticcheck
- stylecheck
- typecheck
- unconvert
- unused
- wastedassign
- whitespace
disable-all: true
issues:
exclude-rules:
- linters:
- forbidigo
# this is one of two files we want to allow exec.Cmd functions in
path: private/pkg/command/runner.go
- linters:
- forbidigo
# this is one of two files we want to allow exec.Cmd functions in
path: private/pkg/command/process.go
- linters:
- forbidigo
# we use os.Rename here to rename files in the same directory
# This is safe (we aren't traversing filesystem boundaries).
path: private/pkg/storage/storageos/bucket.go
text: "os.Rename"
- linters:
- stylecheck
text: "ST1005:"
- linters:
- errcheck
# headers.go has casts with values from contexts that should fail if there
# is no error, but it would be very unidiomatic to return an error from
# the functions that do these casts, and we completely control the
# context values within this file
path: private/pkg/rpc/headers.go
- linters:
- gosec
# G101 checks for hardcoded credentials, and the variables named "*Password*
# trip this off.
path: private/buf/bufcli/bufcli.go
text: "G101:"
- linters:
- gosec
# G204 checks that exec.Command is not called with non-constants.
path: private/pkg/command/runner.go
text: "G204:"
- linters:
- wastedassign
# netrc/internal is a library largely copied in from an external repository with attribution.
# We try to make minimal edits.
path: private/pkg/netrc/internal/internal.go
# we actually want to use this init in testing
- linters:
- gochecknoinits
path: private/bufpkg/bufmodule/bufmoduletesting/bufmoduletesting.go
# we actually want to use this init
- linters:
- gochecknoinits
path: private/usage/usage.go
# we actually want to embed a context here
- linters:
- containedctx
path: private/bufpkg/bufmodule/bufmoduleprotoparse/path_resolver.go
# we actually want to embed a context here
- linters:
- containedctx
path: private/pkg/transport/grpc/grpcclient/client_conn_provider.go
# we actually want to use errgroup when starting an HTTP server
- linters:
- forbidigo
path: private/pkg/transport/http/httpserver/httpserver.go
text: "use of `errgroup"
# we want to use errgroup here
- linters:
- forbidigo
path: private/bufpkg/bufplugin/bufplugindocker/docker.go
text: "use of `errgroup"
- linters:
- containedctx
path: private/bufpkg/bufmodule/bufmoduleprotocompile
# We should be able to use net/http/cgi in a unit test, in addition the CVE mentions only versions of go < 1.6.3 are affected.
- linters:
- gosec
path: private/pkg/git/git_test.go
text: "G504:"
- linters:
- stylecheck
path: private/bufpkg/bufapimodule/module_resolver_test.go
text: "ST1003:"
- linters:
- dogsled
# One function call doesn't care about most of the returned destructured values. The
# dogsled linter complains about it. (Value of this linter is unclear...)
path: private/buf/cmd/buf/command/curl/curl.go
- linters:
- containedctx
# Type must implement an interface whose methods do not accept context. But this
# implementation makes RPC calls, which need a context. So we allow creator of the
# type to provide a context at value creation (instead of using context.Background()).
path: private/buf/bufcurl/reflection_resolver.go
# We deprecated all the definitions in plugin.proto but we still implement them.
- linters:
- staticcheck
text: "buf/alpha/registry/v1alpha1/plugin.proto is marked as deprecated"
# We deprecated all the definitions in generate.proto but we still implement them.
- linters:
- staticcheck
text: "buf/alpha/registry/v1alpha1/generate.proto is marked as deprecated"
# We need to handle this field in descriptor.proto.
- linters:
- staticcheck
text: "GetDeprecatedLegacyJsonFieldConflicts is deprecated"
# We verify manually so that we can emit verbose output while doing so.
- linters:
- gosec
text: "G402:"
path: private/buf/bufcurl/tls.go