headscale/.golangci.yaml

78 lines
1.4 KiB
YAML
Raw Normal View History

2021-10-27 03:07:19 -04:00
---
run:
2021-11-13 04:11:03 -05:00
timeout: 10m
build-tags:
- ts2019
2021-10-27 03:08:24 -04:00
issues:
skip-dirs:
- gen
linters:
enable-all: true
disable:
- depguard
- exhaustivestruct
- revive
- lll
- interfacer
- scopelint
- maligned
- golint
- gofmt
- gochecknoglobals
- gochecknoinits
- gocognit
- funlen
- exhaustivestruct
- tagliatelle
- godox
- ireturn
- execinquery
2022-05-16 09:13:16 -04:00
- exhaustruct
2022-11-05 04:07:22 -04:00
- nolintlint
- musttag # causes issues with imported libs
- depguard
# deprecated
- structcheck # replaced by unused
- ifshort # deprecated by the owner
- varcheck # replaced by unused
- nosnakecase # replaced by revive
- deadcode # replaced by unused
# We should strive to enable these:
- wrapcheck
- dupl
2021-11-14 12:03:21 -05:00
- makezero
- maintidx
2022-11-13 11:02:42 -05:00
# Limits the methods of an interface to 10. We have more in integration tests
- interfacebloat
# We might want to enable this, but it might be a lot of work
- cyclop
- nestif
2021-11-14 10:49:54 -05:00
- wsl # might be incompatible with gofumpt
2021-11-15 11:26:41 -05:00
- testpackage
2021-11-15 13:42:44 -05:00
- paralleltest
2021-11-15 11:16:16 -05:00
linters-settings:
varnamelen:
ignore-type-assert-ok: true
ignore-map-index-ok: true
ignore-names:
- err
- db
- id
- ip
- ok
- c
- tt
2021-11-24 05:13:41 -05:00
gocritic:
disabled-checks:
- appendAssign
# TODO(kradalby): Remove this
- ifElseChain