forked from LaconicNetwork/kompose
30 lines
541 B
YAML
30 lines
541 B
YAML
# Golang CI pipeline configuration
|
|
linters:
|
|
disable-all: true
|
|
|
|
# Run golangci-lint.yml linters to see the list of all linters
|
|
# Please keep them sorted alphabetically
|
|
enable:
|
|
- bodyclose
|
|
- deadcode
|
|
- depguard
|
|
# - dogsled
|
|
# - errcheck
|
|
# - goconst
|
|
- goimports
|
|
# - golint
|
|
- goprintffuncname
|
|
# - gosimple
|
|
- govet
|
|
# - ineffassign
|
|
- misspell
|
|
# - nakedret
|
|
- nolintlint
|
|
- rowserrcheck
|
|
- structcheck
|
|
- stylecheck
|
|
- typecheck
|
|
- unconvert
|
|
- varcheck
|
|
- whitespace
|