https://github.com/tendermint/tendermint
Raw File
Tip revision: 13eff7f7ed80bb5deb8d294998dc429b29bf9fe3 authored by Alessio Treglia on 09 April 2020, 13:48:13 UTC
Merge pull request from GHSA-v24h-pjjv-mcp6
Tip revision: 13eff7f
.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:
    - 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
back to top