...

Text file src/github.com/google/certificate-transparency-go/.golangci.yaml

Documentation: github.com/google/certificate-transparency-go

     1run:
     2  deadline: 90s
     3  skip-dirs:
     4    - (^|/)x509($|/)
     5    - (^|/)x509util($|/)
     6    - (^|/)asn1($|/)
     7
     8linters-settings:
     9  gocyclo:
    10    min-complexity: 25
    11  depguard:
    12    list-type: blacklist
    13    packages:
    14      - ^golang.org/x/net/context$
    15      - github.com/gogo/protobuf/proto
    16      - encoding/asn1
    17      - crypto/x509
    18
    19issues:
    20  exclude-use-default: false
    21  exclude:
    22    - "Error return value of .((os\\.)?std(out|err)\\..*|.*Close|.*Flush|os\\.Remove(All)?|.*printf?|os\\.(Un)?Setenv). is not checked"

View as plain text