feat: add metrics to mailer #69
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
linters: | |
enable: | |
# Code correctness and bug prevention | |
- govet | |
- typecheck | |
- ineffassign | |
- unused | |
# Code style and formatting | |
- stylecheck | |
- gofumpt | |
- misspell | |
- revive | |
# Performance optimizations | |
- prealloc | |
- gocritic | |
- noctx | |
# Code complexity management | |
- gocyclo | |
- dupl | |
- unparam | |
- nakedret | |
- dogsled | |
- gocognit | |
# Security checks | |
- gosec | |
# Specific checks | |
- exportloopref | |
- unconvert | |
- gosimple | |
- gochecknoinits | |
- testpackage | |
# Code formatting issues | |
- lll | |
linters-settings: | |
govet: | |
enable: | |
- shadow | |
gocyclo: | |
min-complexity: 25 | |
dupl: | |
threshold: 100 | |
misspell: | |
locale: US | |
gocritic: | |
enabled-tags: | |
- performance | |
- style | |
- experimental | |
disabled-checks: | |
- wrapperFunc | |
- hugeParam | |
- rangeValCopy | |
lll: | |
line-length: 140 |