1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889 |
- 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/IBM/sarama
- gocritic:
- enabled-tags:
- - diagnostic
- - performance
- # - experimental
- # - opinionated
- # - style
- enabled-checks:
- - importShadow
- - nestingReduce
- - stringsCompare
- # - unnamedResult
- # - whyNoLint
- disabled-checks:
- - assignOp
- - appendAssign
- - commentedOutCode
- - hugeParam
- - ifElseChain
- - singleCaseSwitch
- - sloppyReassign
- funlen:
- lines: 300
- statements: 300
- depguard:
- rules:
- main:
- deny:
- - pkg: "io/ioutil"
- desc: Use the "io" and "os" packages instead.
- linters:
- disable-all: true
- enable:
- - bodyclose
- - depguard
- - exportloopref
- - dogsled
- - errcheck
- - errorlint
- - funlen
- - gochecknoinits
- - gocritic
- - gocyclo
- - gofmt
- - goimports
- - gosec
- - govet
- - misspell
- - nilerr
- - staticcheck
- - typecheck
- - unconvert
- - unused
- - whitespace
- issues:
- exclude:
- - "G404: Use of weak random number generator"
- exclude-rules:
- # exclude some linters from running on certains files.
- - path: functional.*_test\.go
- linters:
- - paralleltest
- # maximum count of issues with the same text. set to 0 for unlimited. default is 3.
- max-same-issues: 0
|