compose-cli/.golangci.yml

39 строки
720 B
YAML
Исходник Обычный вид История

linters:
run:
concurrency: 2
2020-05-06 16:28:03 +03:00
skip-dirs:
- tests/composefiles
enable-all: false
disable-all: true
enable:
- deadcode
- errcheck
- gocyclo
- gofmt
- goimports
- revive
- gosimple
- govet
- ineffassign
- lll
- misspell
- nakedret
- staticcheck
- structcheck
- typecheck
- unconvert
- unparam
- unused
- varcheck
linters-settings:
gocyclo:
min-complexity: 16
lll:
line-length: 200
issues:
2020-05-05 00:50:00 +03:00
# golangci hides some golint warnings (the warning about exported things
# withtout documentation for example), this will make it show them anyway.
exclude-use-default: false
exclude:
- should not use dot imports