forked from mirror/viper
Add golangci config
This commit is contained in:
parent
8feab54f0e
commit
abdeaff171
|
@ -0,0 +1,32 @@
|
||||||
|
linters-settings:
|
||||||
|
golint:
|
||||||
|
min-confidence: 0.1
|
||||||
|
goimports:
|
||||||
|
local-prefixes: github.com/spf13/viper
|
||||||
|
|
||||||
|
linters:
|
||||||
|
enable-all: true
|
||||||
|
disable:
|
||||||
|
- funlen
|
||||||
|
- maligned
|
||||||
|
|
||||||
|
# TODO: fix me
|
||||||
|
- gofmt
|
||||||
|
- goimports
|
||||||
|
- whitespace
|
||||||
|
- deadcode
|
||||||
|
- unused
|
||||||
|
- wsl
|
||||||
|
- golint
|
||||||
|
- stylecheck
|
||||||
|
- gochecknoinits
|
||||||
|
- misspell
|
||||||
|
- gosimple
|
||||||
|
- gochecknoglobals
|
||||||
|
- errcheck
|
||||||
|
- lll
|
||||||
|
- godox
|
||||||
|
- scopelint
|
||||||
|
- gocyclo
|
||||||
|
- gocognit
|
||||||
|
- gocritic
|
Loading…
Reference in New Issue