github.com/buildpack/pack@v0.5.0/golangci.yaml (about)

     1  run:
     2    timeout: 6m
     3    modules-download-mode: vendor
     4  
     5  linters:
     6    disable-all: true
     7    enable:
     8      - bodyclose
     9      - deadcode
    10      - dogsled
    11      - gocritic
    12      - goimports
    13      - golint
    14      - gosimple
    15      - govet
    16      - ineffassign
    17      - maligned
    18      - misspell
    19      - nakedret
    20      - scopelint
    21      - staticcheck
    22      - structcheck
    23      - stylecheck
    24      - typecheck
    25      - unconvert
    26      - unused
    27      - varcheck
    28      - whitespace
    29  
    30  linters-settings:
    31    goimports:
    32      local-prefixes: github.com/buildpack/pack