headscale/.golangci.yaml

55 lines
820 B
YAML
Raw Normal View History

2021-10-27 03:07:19 -04:00
---
run:
2021-11-13 04:11:03 -05:00
timeout: 10m
2021-10-27 03:08:24 -04:00
issues:
skip-dirs:
- gen
linters:
enable-all: true
disable:
- exhaustivestruct
- revive
- lll
- interfacer
- scopelint
- maligned
- golint
- gofmt
- gochecknoglobals
- gochecknoinits
- gocognit
- funlen
- exhaustivestruct
- tagliatelle
- godox
2021-11-13 04:11:03 -05:00
- ireturn
# We should strive to enable these:
- testpackage
- stylecheck
- wrapcheck
- paralleltest
- ifshort
- gomnd
- goerr113
- errorlint
- forcetypeassert
- errname
- wsl
- unparam
- makezero
- gosec
- gocritic
- forbidigo
- dupl
- goconst
- unconvert
- exhaustive
2021-11-13 04:11:03 -05:00
- varnamelen
- nilnil
# We might want to enable this, but it might be a lot of work
- cyclop
- nestif