github.com/ari-anchor/sei-tendermint@v0.0.0-20230519144642-dc826b7b56bb/.golangci.yml (about)

     1  linters:
     2    enable:
     3      - asciicheck
     4      - bodyclose
     5      - deadcode
     6      - depguard
     7      - dogsled
     8      - dupl
     9      - errcheck
    10      - exportloopref
    11      # - funlen
    12      # - gochecknoglobals
    13      # - gochecknoinits
    14      # - gocognit
    15      - goconst
    16      # - gocritic
    17      # - gocyclo
    18      # - godox
    19      - gofmt
    20      - goimports
    21      - revive
    22      - gosec
    23      - gosimple
    24      - govet
    25      - ineffassign
    26      # - interfacer
    27      # - lll
    28      # - maligned
    29      - misspell
    30      - nakedret
    31      - nolintlint
    32      - prealloc
    33      - staticcheck
    34      - structcheck
    35      - stylecheck
    36      - typecheck
    37      - unconvert
    38      # - unparam
    39      - unused
    40      - varcheck
    41      # - whitespace
    42      # - wsl
    43  
    44  issues:
    45    exclude-rules:
    46      - path: _test\.go
    47        linters:
    48          - gosec
    49    max-same-issues: 50
    50  
    51  linters-settings:
    52    dogsled:
    53      max-blank-identifiers: 3
    54    golint:
    55      min-confidence: 0
    56    maligned:
    57      suggest-new: true
    58    misspell:
    59      locale: US