workgroups/vendor/github.com/boumenot/gocover-cobertura/.golangci.yml
Marvin Preuss 1d4ae27878
All checks were successful
continuous-integration/drone/push Build is passing
ci: drone yaml with reusable anchors
2021-09-24 17:34:17 +02:00

34 lines
615 B
YAML

# https://github.com/golangci/golangci-lint/blob/master/.golangci.example.yml
# https://golangci-lint.run/usage/configuration/
run:
timeout: 30s
sort-results: true
linters:
fast: false
presets:
- bugs
- complexity
- unused
enable:
- misspell
linters-settings:
govet:
check-shadowing: false
misspell:
locale: US
issues:
exclude-rules:
# Exclude some linters from running on tests files.
- path: _test\.go
linters:
- dupl
- funlen
- gochecknoglobals
- goconst
- gocyclo
- gosec