yq/.golangci.yml
Matthieu MOREL 38855bf646 lint : define golangci configuration file
This put everything concerning golangci following [this](https://golangci-lint.run/usage/configuration/).
This way, anyone running golangci with a command line or with it's favorite Ide will use the same configuration for the current project.
2021-11-16 16:20:50 +11:00

14 lines
199 B
YAML

run:
timeout: 5m
linters:
enable:
- gofmt
- goimports
- gosec
issues:
exclude-rules:
- linters:
- gosec
text: "Implicit memory aliasing in for loop."
path: _test\.go