Files
Rodney Osodo e8fcaadf5c feat: add LGTM docker stack
Signed-off-by: Rodney Osodo <socials@rodneyosodo.com>
2024-10-17 02:19:50 +03:00

37 lines
580 B
YAML

run:
timeout: 3m
issues:
max-issues-per-linter: 100
max-same-issues: 100
linters-settings:
gocritic:
enabled-tags:
- diagnostic
- performance
- style
- experimental
- opinionated
disabled-checks:
- hugeParam
- exitAfterDefer
linters:
enable-all: true
disable:
- execinquery # deprecated
- gomnd # deprecated
- exportloopref # deprecated
- depguard
- exhaustruct
- ireturn
- funlen
- varnamelen
- wrapcheck
- wsl
- nonamedreturns
- cyclop
- errorlint
- err113