1
0
mirror of https://github.com/juanfont/headscale.git synced 2024-10-17 20:05:55 +02:00
juanfont.headscale/.golangci.yaml

54 lines
841 B
YAML
Raw Normal View History

2021-10-27 09:07:19 +02:00
---
run:
2021-11-13 10:11:03 +01:00
timeout: 10m
2021-10-27 09:08:24 +02: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 10:11:03 +01:00
- ireturn
# We should strive to enable these:
- testpackage
- stylecheck
- wrapcheck
- paralleltest
- ifshort
- gomnd
- goerr113
- errorlint
- forcetypeassert
- errname
- unparam
- makezero
- gosec
- gocritic
- forbidigo
- dupl
- goconst
- exhaustive
2021-11-13 10:11:03 +01:00
- varnamelen
- nilnil
# We might want to enable this, but it might be a lot of work
- cyclop
- nestif
2021-11-14 16:49:54 +01:00
- wsl # might be incompatible with gofumpt