headscale/.golangci.yaml
2021-11-14 18:03:21 +01:00

50 lines
797 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
- ifshort
- gomnd
- goerr113
- errorlint
- forcetypeassert
- errname
- gosec
- gocritic
- forbidigo
- dupl
- goconst
- varnamelen
- makezero
- paralleltest
# We might want to enable this, but it might be a lot of work
- cyclop
- nestif
- wsl # might be incompatible with gofumpt