https://github.com/tendermint/tendermint
Raw File
Tip revision: d14681b52ee490393844394fb70f811d675a7686 authored by Marko Baricevic on 05 August 2020, 09:12:06 UTC
add dates to changelog
Tip revision: d14681b
.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:
    # print struct with more effective memory layout or not, false by default
    suggest-new: true
#   govet:
#     check-shadowing: true
#   golint:
#     min-confidence: 0
#   gocyclo:
#     min-complexity: 10
#   maligned:
#     suggest-new: true
#   dupl:
#     threshold: 100
#   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
back to top