headscale/.golangci.yaml
2021-11-14 17:52:55 +01:00

52 lines
811 B
YAML

---
run:
timeout: 10m
issues:
skip-dirs:
- gen
linters:
enable-all: true
disable:
- exhaustivestruct
- revive
- lll
- interfacer
- scopelint
- maligned
- golint
- gofmt
- gochecknoglobals
- gochecknoinits
- gocognit
- funlen
- exhaustivestruct
- tagliatelle
- godox
- ireturn
# We should strive to enable these:
- testpackage
- stylecheck
- wrapcheck
- paralleltest
- ifshort
- gomnd
- goerr113
- errorlint
- forcetypeassert
- errname
- unparam
- makezero
- gosec
- gocritic
- forbidigo
- dupl
- goconst
- varnamelen
# We might want to enable this, but it might be a lot of work
- cyclop
- nestif
- wsl # might be incompatible with gofumpt