github.com/replicatedhq/ship@v0.55.0/.golangci.yml (about)

     1  run:
     2    deadline: 2m
     3  
     4  linters-settings:
     5    errcheck:
     6      # path to a file containing a list of functions to exclude from checking
     7      # see https://github.com/kisielk/errcheck#excluding-functions for details
     8      exclude: ./.errcheck.txt
     9  
    10      # [deprecated] comma-separated list of pairs of the form pkg:regex
    11      # the regex is used to ignore names within pkg. (default "fmt:.*").
    12      # see https://github.com/kisielk/errcheck#the-deprecated-method for details
    13      ignore: fmt:.*,github.com/go-kit/kit/log:.*