Files
terraform-provider-decort/.golangci.yml

36 lines
622 B
YAML
Raw Normal View History

linters:
enable:
- bodyclose
- decorder
- dogsled
- errorlint
- exportloopref
2022-07-20 17:37:09 +03:00
#- gocognit - disabled till better times
- goconst
- gocyclo
- gosec
- ifshort
- makezero
#- nestif - disabled till better times
- nilerr
- prealloc
- unconvert
- unparam
linters-settings:
errcheck:
exclude-functions:
2022-07-20 17:37:09 +03:00
- (*github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema.ResourceData).Set
staticcheck:
go: "1.18"
checks:
- all
- -SA1019
nestif:
min-complexity: 7
2022-07-21 13:38:52 +03:00
gocyclo:
min-complexity: 40
issues:
max-same-issues: 0