29 lines
430 B
YAML
29 lines
430 B
YAML
linters-settings:
|
|
golint:
|
|
min-confidence: 0
|
|
|
|
misspell:
|
|
locale: US
|
|
|
|
linters:
|
|
disable-all: true
|
|
enable:
|
|
- typecheck
|
|
- goimports
|
|
- misspell
|
|
- govet
|
|
- golint
|
|
- ineffassign
|
|
- gosimple
|
|
- deadcode
|
|
- unparam
|
|
- unused
|
|
- structcheck
|
|
|
|
service:
|
|
golangci-lint-version: 1.27.0 # use the fixed version to not introduce new linters unexpectedly
|
|
|
|
run:
|
|
skip-dirs:
|
|
- pkg/clientgen
|