headscale/.golangci.yaml

52 lines
809 B
YAML
Raw Normal View History

2021-10-27 07:07:19 +00:00
---
run:
2021-11-13 09:11:03 +00:00
timeout: 10m
2021-10-27 07:08:24 +00: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 09:11:03 +00:00
- ireturn
2021-11-14 17:44:37 +00:00
# In progress
- gocritic
# TODO: approve: ok, db, id
- varnamelen
# We should strive to enable these:
- testpackage
- stylecheck
- wrapcheck
- goerr113
- errorlint
- forcetypeassert
- errname
- gosec
- forbidigo
- dupl
2021-11-14 17:03:21 +00:00
- makezero
- paralleltest
# We might want to enable this, but it might be a lot of work
- cyclop
- nestif
2021-11-14 15:49:54 +00:00
- wsl # might be incompatible with gofumpt