mark/.golangci.yml
Egor Kovetskiy 5cef9b651b add .golangci.yml
Signed-off-by: Egor Kovetskiy <e.kovetskiy@gmail.com>
2023-05-23 06:59:51 +00:00

24 lines
416 B
YAML

linters:
disable-all: true
enable:
- govet
- gofmt
- errcheck
- deadcode
- ineffassign
- staticcheck
- structcheck
- typecheck
- unused
- varcheck
- unconvert
- unparam
- whitespace
- wsl
- nlreturn
- nonamedreturns
issues:
exclude:
- SA1029 # "should not use built-in type string as key for value; define your own type to avoid collisions"