Revision df5ba80914bcd4008d2ca04c8fd8127121b91d65 authored by mergify[bot] on 05 October 2022, 19:56:34 UTC, committed by GitHub on 05 October 2022, 19:56:34 UTC
* Extend the load report tool to include transactions' hashes (#9509)

* Add transaction hash to raw data

* Add hash in formatted output

* Cosmetic

(cherry picked from commit cdd3479f20b15c7dab0c683e2d5dddb7e7b95721)

# Conflicts:
#	test/loadtime/cmd/report/main.go

* Resolve conflict

* Appease linter

Co-authored-by: Sergio Mena <sergio@informal.systems>
1 parent bda1dd4
Raw File
.golangci.yml
linters:
  enable:
    - asciicheck
    - bodyclose
    # - deadcode
    - depguard
    - dogsled
    - dupl
    - errcheck
    - exportloopref
    # - funlen
    # - gochecknoglobals
    # - gochecknoinits
    # - gocognit
    - goconst
    # - gocritic
    # - gocyclo
    # - godox
    - gofmt
    - goimports
    - revive
    - gosec
    - gosimple
    - govet
    - ineffassign
    # - interfacer
    - lll
    # - maligned
    # - misspell
    - nakedret
    # - nolintlint
    - prealloc
    - staticcheck
    # - structcheck // to be fixed by golangci-lint
    - stylecheck
    # - typecheck
    - unconvert
    # - unparam
    # - unused
    - varcheck
    # - whitespace
    # - wsl
  disable:
    - unused
    - deadcode
    - nolintlint

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

linters-settings:
  dogsled:
    max-blank-identifiers: 3
  maligned:
    suggest-new: true
  # govet:
  #   check-shadowing: true
  revive:
    min-confidence: 0
  misspell:
    locale: US
    ignore-words:
      - behaviour


back to top