golangci-lint: enable misspell, tweak configuration
Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
This commit is contained in:
parent
c9553897f3
commit
f41712c4be
1 changed files with 7 additions and 0 deletions
|
@ -8,6 +8,7 @@ linters:
|
|||
- gosimple
|
||||
- govet
|
||||
- ineffassign
|
||||
- misspell
|
||||
- unconvert
|
||||
|
||||
disable:
|
||||
|
@ -33,6 +34,12 @@ linters-settings:
|
|||
|
||||
issues:
|
||||
exclude-rules:
|
||||
# Exclude some linters from running on tests files.
|
||||
- path: _test\.go
|
||||
linters:
|
||||
- errcheck
|
||||
- gosec
|
||||
|
||||
- text: "G201: SQL string formatting"
|
||||
linters:
|
||||
- gosec
|
||||
|
|
Loading…
Reference in a new issue