Files
attest-provider/.golangci.yaml
mrjoelkamp f91a423ef6 merge poc
2024-05-23 10:52:35 -05:00

43 lines
641 B
YAML

run:
timeout: 5m
linters-settings:
gocritic:
enabled-tags:
- performance
gosec:
excludes:
- G108
lll:
line-length: 200
misspell:
locale: US
staticcheck:
# Select the Go version to target. The default is '1.13'.
go: "1.22"
linters:
disable-all: true
enable:
- errcheck
- exportloopref
- forcetypeassert
- gocritic
- goconst
- godot
- gofmt
- gofumpt
- goimports
- gosec
- gosimple
- govet
- importas
- ineffassign
- misspell
- revive # replacement for golint
- staticcheck
- typecheck
- unused
- whitespace