Files
podman/.golangci.yml
Valentin Rothberg 593eb7625a golangci: enable goimports
Enable the goimports linter and fix reports.

Signed-off-by: Valentin Rothberg <rothberg@redhat.com>
2020-03-05 20:03:44 +01:00

33 lines
463 B
YAML

---
run:
build-tags:
- apparmor
- seccomp
- selinux
concurrency: 6
deadline: 5m
skip-dirs-use-default: true
skip-dirs:
- contrib
- dependencies
- test
skip-files:
- iopodman.go
- swagger.go
linters:
enable-all: true
disable:
- dupl
- funlen
- gochecknoglobals
- gochecknoinits
- goconst
- gocyclo
- golint
- gosec
- lll
- maligned
- misspell
- prealloc
- unparam