github.com/dnephin/dobi@v0.15.0/.golangci.yaml (about)

     1  run:
     2    concurrency: 2
     3    timeout: 2m
     4  
     5  linters-settings:
     6    gocyclo:
     7      min-complexity: 9
     8    lll:
     9      line-length: 95
    10  
    11  linters:
    12    disable-all: true
    13    enable:
    14      - deadcode
    15      - goconst
    16      - gocyclo
    17      - gofmt
    18      - goimports
    19      - golint
    20      - gosimple
    21      - ineffassign
    22      - interfacer
    23      - errcheck
    24      - lll
    25      - megacheck
    26      - misspell
    27      - structcheck
    28      - unconvert
    29      - unparam
    30      - unused
    31      - varcheck
    32      - vet
    33  
    34  issues:
    35    exclude-rules:
    36      - path: tasks/image/tag_test\.go
    37        linters:
    38          - interfacer