1234567891011121314151617181920212223242526272829303132333435363738 |
- run:
- deadline: 90s
- skip-dirs:
- - (^|/)x509($|/)
- - (^|/)x509util($|/)
- - (^|/)asn1($|/)
- linters-settings:
- gocyclo:
- min-complexity: 40
- depguard:
- list-type: blacklist
- packages:
- - ^golang.org/x/net/context$
- - github.com/gogo/protobuf/proto
- - encoding/asn1
- - crypto/x509
- linters:
- disable-all: true
- enable:
- - deadcode
- - depguard
- - gocyclo
- - gofmt
- - goimports
- - govet
- - ineffassign
- - megacheck
- - misspell
- - revive
- - varcheck
- # TODO(gbelvin): write license linter and commit to upstream.
- # ./scripts/check_license.sh is run by ./scripts/presubmit.sh
- issues:
- # Don't turn off any checks by default. We can do this explicitly if needed.
- exclude-use-default: false
|