pages-server/.golangci.yml
Gusted 827c582147
Add golangci linters
- Remove unnecessary type conversion.
- Fix gocritic checks.
2022-11-15 09:04:56 +01:00

20 lines
293 B
YAML

linters-settings:
gocritic:
enabled-tags:
- diagnostic
- experimental
- opinionated
- performance
- style
disabled-checks:
- importShadow
- ifElseChain
- hugeParam
linters:
enable:
- unconvert
- gocritic
run:
timeout: 5m