-
Notifications
You must be signed in to change notification settings - Fork 67
/
Copy path.golangci.yaml
38 lines (35 loc) · 1.35 KB
/
.golangci.yaml
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
run:
# timeout for analysis, e.g. 30s, 5m, default is 1m
deadline: 90s
build-tags:
- lint
linters-settings:
gocyclo:
# minimal code complexity to report, 30 by default (but we recommend 10-20)
min-complexity: 25
depguard:
packages:
- golang.org/x/net/context
- github.com/gogo/protobuf/proto
- encoding/asn1
- crypto/x509
issues:
# Don't turn off any checks by default. We can do this explicitly if needed.
exclude-use-default: false
# List of regexps of issue texts to exclude.
#
# But independently of this option we use default exclude patterns,
# it can be disabled by `exclude-use-default: false`.
# To list all excluded by default patterns execute `golangci-lint run --help`
#
# Default: https://golangci-lint.run/usage/false-positives/#default-exclusions
exclude:
- "package-comments: should have a package comment"
exclude-rules:
# The following grpc linters are excluded because grpc.Dial, grpc.DialContext and grpc.WithBlock will be supported throughout 1.x.
- linters: [staticcheck]
text: 'SA1019: grpc.Dial is deprecated: use NewClient instead'
- linters: [staticcheck]
text: 'SA1019: grpc.DialContext is deprecated: use NewClient instead'
- linters: [staticcheck]
text: 'SA1019: grpc.WithBlock is deprecated: this DialOption is not supported by NewClient'