123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475 |
- run:
- timeout: 5m
- deadline: 10m
- linters-settings:
- govet:
- check-shadowing: false
- golint:
- min-confidence: 0
- gocyclo:
- min-complexity: 99
- maligned:
- suggest-new: true
- dupl:
- threshold: 100
- goconst:
- min-len: 2
- min-occurrences: 3
- misspell:
- locale: US
- goimports:
- local-prefixes: github.com/Shopify/sarama
- gocritic:
- enabled-tags:
- - diagnostic
- - experimental
- - opinionated
- - performance
- - style
- disabled-checks:
- - wrapperFunc
- - ifElseChain
- funlen:
- lines: 300
- statements: 300
- linters:
- disable-all: true
- enable:
- - bodyclose
- - deadcode
- - depguard
- - dogsled
-
- - errcheck
- - funlen
-
- - gocyclo
- - gofmt
- - goimports
-
- - gosec
-
- - govet
-
- - interfacer
-
-
-
-
- - structcheck
-
- - typecheck
- - unconvert
- - unused
- - varcheck
- - whitespace
-
-
- issues:
- exclude:
- - consider giving a name to these results
- - include an explanation for nolint directive
- - Potential Integer overflow made by strconv.Atoi result conversion to int16/32
|