github.com/etecs-ru/gnomock@v0.13.2/.golangci.yml (about)

     1  linters:
     2    enable:
     3      - deadcode
     4      - errcheck
     5      - gosimple
     6      - govet
     7      - ineffassign
     8      - staticcheck
     9      - structcheck
    10      - typecheck
    11      - unused
    12      - varcheck
    13      - bodyclose
    14      - depguard
    15      - dogsled
    16      - funlen
    17      - gocognit
    18      - goconst
    19      - gocritic
    20      - gocyclo
    21      - godox
    22      - gofmt
    23      - goimports
    24      - golint
    25      - goprintffuncname
    26      - gosec
    27      - lll
    28      - misspell
    29      - nakedret
    30      - prealloc
    31      - rowserrcheck
    32      - exportloopref
    33      - stylecheck
    34      - unconvert
    35      - unparam
    36      - whitespace
    37      - wsl
    38      - noctx
    39      - durationcheck
    40  
    41  issues:
    42    exclude-rules:
    43      - path: _test\.go
    44        linters:
    45          - funlen
    46          - bodyclose
    47          - gosec