1
0
mirror of https://github.com/nikoksr/notify.git synced 2024-11-24 08:22:18 +02:00
notify/.golangci.yml
2022-04-22 20:44:27 +02:00

48 lines
800 B
YAML

run:
timeout: '5m'
skip-dirs:
- 'assets'
allow-parallel-runners: true
modules-download-mode: 'readonly'
linters:
enable:
- 'asciicheck'
- 'bodyclose'
- 'deadcode'
- 'depguard'
- 'dogsled'
- 'errcheck'
- 'errorlint'
- 'exportloopref'
- 'gofmt'
- 'gofumpt'
- 'goheader'
- 'goimports'
- 'gomodguard'
- 'goprintffuncname'
- 'gosec'
- 'gosimple'
- 'govet'
- 'ineffassign'
- 'makezero'
- 'misspell'
- 'noctx'
- 'paralleltest'
- 'prealloc'
- 'predeclared'
- 'revive'
- 'sqlclosecheck'
- 'staticcheck'
- 'structcheck'
- 'stylecheck'
- 'typecheck'
- 'unconvert'
- 'unused'
- 'varcheck'
- 'whitespace'
issues:
max-issues-per-linter: 0
max-same-issues: 0