2019-08-27 23:39:48 +00:00
|
|
|
linters-settings:
|
|
|
|
govet:
|
|
|
|
check-shadowing: true
|
2020-01-11 01:19:56 +00:00
|
|
|
settings:
|
|
|
|
printf:
|
|
|
|
funcs:
|
|
|
|
- (github.com/golangci/golangci-lint/pkg/logutils.Log).Infof
|
|
|
|
- (github.com/golangci/golangci-lint/pkg/logutils.Log).Errorf
|
|
|
|
- (github.com/golangci/golangci-lint/pkg/logutils.Log).Warnf
|
|
|
|
- (github.com/golangci/golangci-lint/pkg/logutils.Log).Fatalf
|
2021-05-03 19:48:20 +00:00
|
|
|
revive:
|
2019-08-27 23:39:48 +00:00
|
|
|
min-confidence: 0
|
|
|
|
gocyclo:
|
|
|
|
min-complexity: 10
|
|
|
|
maligned:
|
|
|
|
suggest-new: true
|
|
|
|
dupl:
|
|
|
|
threshold: 100
|
|
|
|
goconst:
|
|
|
|
min-len: 2
|
|
|
|
min-occurrences: 2
|
|
|
|
depguard:
|
|
|
|
list-type: blacklist
|
|
|
|
packages:
|
|
|
|
# logging is allowed only by logutils.Log, logrus
|
|
|
|
# is allowed to use only in logutils package
|
|
|
|
- github.com/sirupsen/logrus
|
|
|
|
misspell:
|
|
|
|
locale: US
|
|
|
|
lll:
|
|
|
|
line-length: 140
|
|
|
|
goimports:
|
|
|
|
local-prefixes: github.com/golangci/golangci-lint
|
|
|
|
gocritic:
|
|
|
|
enabled-tags:
|
|
|
|
- performance
|
|
|
|
- style
|
|
|
|
- experimental
|
2021-10-08 18:59:57 +00:00
|
|
|
- diagnostic
|
2019-08-27 23:39:48 +00:00
|
|
|
disabled-checks:
|
2021-10-08 18:59:57 +00:00
|
|
|
- commentFormatting
|
|
|
|
- commentedOutCode
|
|
|
|
- evalOrder
|
|
|
|
- hugeParam
|
|
|
|
- octalLiteral
|
|
|
|
- rangeValCopy
|
|
|
|
- tooManyResultsChecker
|
|
|
|
- unnamedResult
|
2019-08-27 23:39:48 +00:00
|
|
|
|
|
|
|
linters:
|
|
|
|
disable-all: true
|
|
|
|
enable:
|
2021-10-08 18:59:57 +00:00
|
|
|
- deadcode
|
|
|
|
- gocritic
|
2019-08-27 23:39:48 +00:00
|
|
|
- gofmt
|
2021-10-08 18:59:57 +00:00
|
|
|
- gosimple
|
2020-01-10 19:19:28 +00:00
|
|
|
- govet
|
2019-08-27 23:39:48 +00:00
|
|
|
- ineffassign
|
2021-10-08 18:59:57 +00:00
|
|
|
- misspell
|
|
|
|
- revive
|
2019-09-19 20:17:23 +00:00
|
|
|
- staticcheck
|
|
|
|
- unused
|
2019-08-27 23:39:48 +00:00
|
|
|
|
|
|
|
run:
|
|
|
|
skip-dirs:
|
|
|
|
- pkg
|
|
|
|
|
|
|
|
issues:
|
|
|
|
exclude:
|
|
|
|
- can't lint
|
|
|
|
- declaration of "err" shadows declaration at line
|
|
|
|
- should have a package comment, unless it's in another file for this package
|
|
|
|
- error strings should not be capitalized or end with punctuation or a newline
|
2020-01-24 06:04:34 +00:00
|
|
|
- Wrapf call needs 1 arg but has 2 args
|
2020-08-17 20:46:30 +00:00
|
|
|
- cs.NegotiatedProtocolIsMutual is deprecated
|
2019-08-27 23:39:48 +00:00
|
|
|
# golangci.com configuration
|
|
|
|
# https://github.com/golangci/golangci/wiki/Configuration
|
|
|
|
service:
|
2020-01-11 01:19:56 +00:00
|
|
|
golangci-lint-version: 1.19.x # use the fixed version to not introduce new linters unexpectedly
|
2019-08-27 23:39:48 +00:00
|
|
|
prepare:
|
|
|
|
- echo "here I can run custom commands, but no preparation needed for this repo"
|