headscale/.golangci.yaml

62 lines
982 B
YAML
Raw Normal View History

2021-10-27 01:07:19 -06:00
---
run:
2021-11-13 02:11:03 -07:00
timeout: 10m
2021-10-27 01:08:24 -06: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
- ireturn
- execinquery
2022-05-16 07:13:16 -06:00
- exhaustruct
2022-11-05 02:07:22 -06:00
- nolintlint
# We should strive to enable these:
- wrapcheck
- dupl
2021-11-14 10:03:21 -07:00
- makezero
- maintidx
# We might want to enable this, but it might be a lot of work
- cyclop
- nestif
2021-11-14 08:49:54 -07:00
- wsl # might be incompatible with gofumpt
2021-11-15 09:26:41 -07:00
- testpackage
2021-11-15 11:42:44 -07:00
- paralleltest
2021-11-15 09:16:16 -07: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 03:13:41 -07:00
gocritic:
disabled-checks:
- appendAssign
# TODO(kradalby): Remove this
- ifElseChain