pulumi/.golangci.yml

21 lines
392 B
YAML
Raw Normal View History

linters:
enable-all: false
enable:
- deadcode
- errcheck
- goconst
- gofmt
- golint
- gosec
- govet
- ineffassign
- lll
- misspell
- nakedret
- structcheck
- unconvert
- varcheck
disable:
- staticcheck # Disabled due to OOM errors in golangci-lint@v1.18.0
- megacheck # Disabled due to OOM errors in golangci-lint@v1.18.0