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

78 lines
1.4 KiB
YAML
Raw Normal View History

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