linters-settings: govet: check-shadowing: true golint: 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 disabled-checks: - wrapperFunc - commentFormatting # https://github.com/go-critic/go-critic/issues/755 linters: enable-all: true disable: - maligned - prealloc - gosec - gochecknoglobals run: skip-dirs: - test/testdata_etc # golangci.com configuration # https://github.com/golangci/golangci/wiki/Configuration service: golangci-lint-version: 1.13.x # use fixed version to not introduce new linters unexpectedly prepare: - echo "here I can run custom commands, but no preparation needed"