dbmate/.golangci.yml
2021-12-20 10:29:33 -08:00

32 lines
470 B
YAML

linters:
enable:
- bodyclose
- deadcode
- depguard
- errcheck
- goimports
- gosimple
- govet
- ineffassign
- misspell
- nakedret
- revive
- rowserrcheck
- staticcheck
- structcheck
- typecheck
- unconvert
- unparam
- unused
- varcheck
- whitespace
linters-settings:
goimports:
local-prefixes: github.com/amacneil/dbmate
misspell:
locale: US
issues:
include:
- EXC0002