provider-kairos/.golangci.yml
Mauro Morales e2fe760d9d
golint
Signed-off-by: Mauro Morales <mauro.morales@spectrocloud.com>
2025-03-28 15:50:29 +01:00

36 lines
529 B
YAML

version: "2"
run:
tests: false
linters:
enable:
- dupl
- goconst
- gocyclo
- godot
- goheader
- misspell
- revive
exclusions:
generated: lax
presets:
- comments
- common-false-positives
- legacy
- std-error-handling
paths:
- tests/
- third_party$
- builtin$
- examples$
formatters:
enable:
- gofmt
- goimports
exclusions:
generated: lax
paths:
- tests/
- third_party$
- builtin$
- examples$