headscale/.golangci.yaml

78 lines
1.4 KiB
YAML
Raw Normal View History

2021-10-27 15:07:19 +08:00
---
run:
2021-11-13 17:11:03 +08:00
timeout: 10m
build-tags:
- ts2019
2021-10-27 15:08:24 +08: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 21:13:16 +08:00
- exhaustruct
2022-11-05 16:07:22 +08: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-15 01:03:21 +08:00
- makezero
- maintidx
2022-11-14 00:02:42 +08: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 23:49:54 +08:00
- wsl # might be incompatible with gofumpt
2021-11-16 00:26:41 +08:00
- testpackage
2021-11-16 02:42:44 +08:00
- paralleltest
2021-11-16 00:16:16 +08: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 18:13:41 +08:00
gocritic:
disabled-checks:
- appendAssign
# TODO(kradalby): Remove this
- ifElseChain