a3bf13711c
I had to run `make generate`. Some API functions got additional parameters `Options` and `Context`. I used empty options and `context.TODO()` for now. Signed-off-by: leonnicolas <leonloechner@gmx.de>
29 lines
419 B
YAML
29 lines
419 B
YAML
linters-settings:
|
|
govet:
|
|
check-shadowing: true
|
|
golint:
|
|
min-confidence: 0
|
|
gocyclo:
|
|
min-complexity: 45
|
|
maligned:
|
|
suggest-new: true
|
|
dupl:
|
|
threshold: 200
|
|
goconst:
|
|
min-len: 2
|
|
min-occurrences: 2
|
|
|
|
linters:
|
|
enable-all: true
|
|
disable:
|
|
- maligned
|
|
- unparam
|
|
- lll
|
|
- gochecknoinits
|
|
- gochecknoglobals
|
|
- funlen
|
|
- godox
|
|
- gocognit
|
|
- whitespace
|
|
- wsl
|