mirror of
https://github.com/mikefarah/yq.git
synced 2024-11-12 05:38:04 +00:00
38855bf646
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.
14 lines
199 B
YAML
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
|