[go: up one dir, main page]

File: .golangci.yaml

package info (click to toggle)
trillian 1.6.1-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 6,280 kB
  • sloc: sh: 1,087; javascript: 474; sql: 164; makefile: 37
file content (29 lines) | stat: -rw-r--r-- 1,047 bytes parent folder | download
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
run:
  # timeout for analysis, e.g. 30s, 5m, default is 1m
  deadline: 90s
  skip-files:
    - types/internal/tls/tls.go

linters-settings:
  gocyclo:
    # minimal code complexity to report, 30 by default (but we recommend 10-20)
    # TODO(mhutchinson): lower this again after reworking interceptor
    min-complexity: 26
  depguard:
    list-type: blacklist
    packages:
      - golang.org/x/net/context
      - github.com/gogo/protobuf/proto

issues:
  # Don't turn off any checks by default. We can do this explicitly if needed.
  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'