Files
spend-sparrow/.golangci.yaml
Tim Wundenberg 6291700a3b
All checks were successful
Build Docker Image / Build-Docker-Image (push) Successful in 8m11s
feat(observabillity): #153 instrument sqlx
2025-06-07 21:55:59 +02:00

31 lines
780 B
YAML

version: '2'
linters:
default: all
disable:
- wsl
- wrapcheck
- varnamelen
- revive # should probably be enabled
- nlreturn
- mnd # should probably be enabled
- lll # should probably be enabled
- ireturn # should probably be enabled
- interfacebloat
- iface
- goconst # should probably be enabled
- gocognit # should probably be enabled
- gochecknoglobals # should probably be enabled
- funlen
- maintidx
- exhaustruct
- dupword # should probably be enabled
- dupl # should probably be enabled
- depguard
- cyclop
- contextcheck
- bodyclose # i don't care in the tests, the implementation itself doesn't do http requests
- containedctx
settings:
nestif:
min-complexity: 6