github.com/amacneil/dbmate@v1.16.3-0.20230225174651-ca89b10d75d7/.golangci.yml (about)

     1  linters:
     2    enable:
     3      - bodyclose
     4      - depguard
     5      - errcheck
     6      - goimports
     7      - gosimple
     8      - govet
     9      - ineffassign
    10      - misspell
    11      - nakedret
    12      - revive
    13      - rowserrcheck
    14      - staticcheck
    15      - typecheck
    16      - unconvert
    17      - unparam
    18      - unused
    19      - whitespace
    20  
    21  linters-settings:
    22    goimports:
    23      local-prefixes: github.com/amacneil/dbmate
    24    misspell:
    25      locale: US
    26  
    27  issues:
    28    include:
    29      - EXC0002