https://github.com/tendermint/tendermint
Raw File
Tip revision: 174783220e58cba4fbcd9095fa5f6e8bf9fad79b authored by Thane Thomson on 19 August 2022, 12:32:50 UTC
docs: Update v0.33.x to prepare for v0.37 (#9248)
Tip revision: 1747832
.golangci.yml
linters:
  enable:
    - bodyclose
    - deadcode
    - depguard
    - dogsled
    - dupl
    # - errcheck
    # - funlen
    # - gochecknoglobals
    # - gochecknoinits
    - goconst
    # - gocritic
    # - gocyclo
    # - godox
    - gofmt
    - goimports
    - golint
    # - gosec
    - gosimple
    - govet
    - ineffassign
    - interfacer
    - lll
    - misspell
    # - maligned
    - nakedret
    - prealloc
    - scopelint
    - staticcheck
    - structcheck
    - stylecheck
    - typecheck
    - unconvert
    # - unparam
    - unused
    - varcheck
    # - whitespace
    # - wsl
    # - gocognit
  disable:
    - errcheck

issues:
  exclude-rules:
    - path: _test\.go
      linters:
        - gosec
    - linters:
        - lll
      source: "https://"

linters-settings:
  dogsled:
    max-blank-identifiers: 3
  maligned:
    suggest-new: true
  # govet:
  #   check-shadowing: true
  golint:
    min-confidence: 0
#   gocyclo:
#     min-complexity: 10
#   misspell:
#     locale: US
#   gocritic:
#     enabled-tags:
#       - performance
#       - style
#       - experimental
#     disabled-checks:
#       - wrapperFunc
#       - commentFormatting # https://github.com/go-critic/go-critic/issues/755
service:
  golangci-lint-version: 1.31.x
back to top