mirror of
https://github.com/juanfont/headscale.git
synced 2024-11-30 02:43:05 +00:00
Setup more linters and goals for golangci
This commit is contained in:
parent
3ddd9962ce
commit
148437f716
1 changed files with 46 additions and 0 deletions
|
@ -5,3 +5,49 @@ run:
|
||||||
issues:
|
issues:
|
||||||
skip-dirs:
|
skip-dirs:
|
||||||
- gen
|
- 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
|
||||||
|
|
Loading…
Reference in a new issue