42 lines
710 B
YAML
42 lines
710 B
YAML
run:
|
|
timeout: 5m
|
|
allow-parallel-runners: true
|
|
|
|
issues:
|
|
# don't skip warning about doc comments
|
|
# don't exclude the default set of lint
|
|
exclude-use-default: false
|
|
# restore some of the defaults
|
|
# (fill in the rest as needed)
|
|
exclude-rules:
|
|
- path: "api/*"
|
|
linters:
|
|
- lll
|
|
- path: "internal/*"
|
|
linters:
|
|
- dupl
|
|
- lll
|
|
linters:
|
|
disable-all: true
|
|
enable:
|
|
- dupl
|
|
- errcheck
|
|
- exportloopref
|
|
- ginkgolinter
|
|
- goconst
|
|
- gocyclo
|
|
- gofmt
|
|
- goimports
|
|
- gosimple
|
|
- govet
|
|
- ineffassign
|
|
- lll
|
|
- misspell
|
|
- nakedret
|
|
- prealloc
|
|
- staticcheck
|
|
- typecheck
|
|
- unconvert
|
|
- unparam
|
|
- unused
|