headscale/.golangci.yaml

61 lines
965 B
YAML
Raw Normal View History

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