github.com/Team-Kujira/tendermint@v0.34.24-indexer/.golangci.yml (about)

     1  linters:
     2    enable:
     3      - asciicheck
     4      - bodyclose
     5      - depguard
     6      - dogsled
     7      - dupl
     8      - errcheck
     9      - exportloopref
    10      - goconst
    11      - gofmt
    12      - goimports
    13      - revive
    14      - gosec
    15      - gosimple
    16      - govet
    17      - ineffassign
    18      - misspell
    19      - nakedret
    20      - nolintlint
    21      - prealloc
    22      - staticcheck
    23      # - structcheck // to be fixed by golangci-lint
    24      - stylecheck
    25      - typecheck
    26      - unconvert
    27      - unused
    28  
    29  issues:
    30    exclude-rules:
    31      - path: _test\.go
    32        linters:
    33          - gosec
    34    max-same-issues: 50
    35  
    36  linters-settings:
    37    dogsled:
    38      max-blank-identifiers: 3
    39    golint:
    40      min-confidence: 0
    41    maligned:
    42      suggest-new: true
    43  
    44  run:
    45    skip-files:
    46      - libs/pubsub/query/query.peg.go