github.com/simpleiot/simpleiot@v0.18.3/.golangci.yml (about)

     1  linters:
     2    # the following can be used to run just one linter to debug problems
     3    #disable-all: true
     4    enable:
     5      - revive
     6      - goimports
     7  issues:
     8    include:
     9      # The following are for revive package and exported function comments
    10      - EXC0012
    11      - EXC0013
    12      - EXC0014
    13      # "should have a package comment" is failing in github actions
    14      #- EXC0015
    15    exclude:
    16      - SA1019