Setup more linters and goals for golangci

This commit is contained in:
Kristoffer Dalby 2021-11-13 08:53:34 +00:00
parent 3ddd9962ce
commit 148437f716
1 changed files with 46 additions and 0 deletions

View File

@ -5,3 +5,49 @@ run:
issues:
skip-dirs:
- gen
linters:
enable-all: true
disable:
- exhaustivestruct
- revive
- lll
- interfacer
- scopelint
- maligned
- golint
- gofmt
- gochecknoglobals
- gochecknoinits
- gocognit
- funlen
- exhaustivestruct
- tagliatelle
- godox
# We should strive to enable these:
- testpackage
- stylecheck
- wrapcheck
- paralleltest
- noctx
- nlreturn
- ifshort
- gomnd
- goerr113
- errorlint
- forcetypeassert
- errname
- wsl
- unparam
- makezero
- gosec
- gocritic
- forbidigo
- dupl
- goconst
- unconvert
- exhaustive
# We might want to enable this, but it might be a lot of work
- cyclop
- nestif