mirror of
https://github.com/wiggin77/mailrelay.git
synced 2024-11-21 23:03:07 +01:00
74 lines
1.3 KiB
YAML
74 lines
1.3 KiB
YAML
linters-settings:
|
|
gocritic:
|
|
enabled-tags:
|
|
- diagnostic
|
|
- experimental
|
|
- performance
|
|
- style
|
|
disabled-checks:
|
|
- dupImport # https://github.com/go-critic/go-critic/issues/845
|
|
- ifElseChain
|
|
- octalLiteral
|
|
- whyNoLint
|
|
- wrapperFunc
|
|
govet:
|
|
check-shadowing: true
|
|
misspell:
|
|
locale: US
|
|
|
|
linters:
|
|
# please, do not use `enable-all`: it's deprecated and will be removed soon.
|
|
# inverted configuration with `enable-all` and `disable` is not scalable during updates of golangci-lint
|
|
disable-all: true
|
|
enable:
|
|
- bodyclose
|
|
- deadcode
|
|
- depguard
|
|
- dogsled
|
|
- dupl
|
|
- errcheck
|
|
# - funlen
|
|
- gochecknoinits
|
|
- goconst
|
|
# - gocritic
|
|
- gocyclo
|
|
- gofmt
|
|
- goimports
|
|
- golint
|
|
- gomnd
|
|
- goprintffuncname
|
|
- gosec
|
|
- gosimple
|
|
- govet
|
|
- ineffassign
|
|
- interfacer
|
|
- lll
|
|
- misspell
|
|
- nakedret
|
|
# - nolintlint
|
|
- rowserrcheck
|
|
- scopelint
|
|
- staticcheck
|
|
- structcheck
|
|
- stylecheck
|
|
- typecheck
|
|
- unconvert
|
|
- unparam
|
|
- unused
|
|
- varcheck
|
|
- whitespace
|
|
|
|
# don't enable:
|
|
# - asciicheck
|
|
# - gochecknoglobals
|
|
# - gocognit
|
|
# - godot
|
|
# - godox
|
|
# - goerr113
|
|
# - maligned
|
|
# - nestif
|
|
# - prealloc
|
|
# - testpackage
|
|
# - wsl
|
|
|