forked from google/certificate-transparency-go
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.golangci.yaml
28 lines (26 loc) · 841 Bytes
/
.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
run:
deadline: 90s
skip-dirs:
- (^|/)x509($|/)
- (^|/)x509util($|/)
- (^|/)asn1($|/)
linters-settings:
gocyclo:
min-complexity: 25
depguard:
list-type: blacklist
packages:
- ^golang.org/x/net/context$
- github.com/gogo/protobuf/proto
- encoding/asn1
- crypto/x509
issues:
exclude-use-default: false
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'