https://github.com/tendermint/tendermint
Revision 792b12573eee1a58b574decce2bd62399b0b24c3 authored by Ethan Buchman on 08 February 2019, 23:50:02 UTC, committed by GitHub on 08 February 2019, 23:50:02 UTC
* changelog, upgrading, version

* update for evidence fixes

* linkify

* fix an entry
1 parent 4f2ef36
Raw File
Tip revision: 792b12573eee1a58b574decce2bd62399b0b24c3 authored by Ethan Buchman on 08 February 2019, 23:50:02 UTC
Prepare v0.30.0 (#3287)
Tip revision: 792b125
.golangci.yml
run:
  deadline: 1m

linters:
  enable-all: true
  disable:
    - gocyclo
    - golint
    - maligned
    - errcheck
    - staticcheck
    - dupl
    - ineffassign
    - interfacer
    - unconvert
    - goconst
    - unparam
    - nakedret
    - lll
    - gochecknoglobals
    - govet
    - gocritic
    - gosec
    - gochecknoinits
    - scopelint
    - stylecheck

# 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
back to top