mirror of
https://github.com/juanfont/headscale.git
synced 2024-11-10 17:12:33 +08:00
74 lines
1.3 KiB
YAML
74 lines
1.3 KiB
YAML
---
|
|
run:
|
|
timeout: 10m
|
|
build-tags:
|
|
- ts2019
|
|
|
|
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
|
|
- exhaustruct
|
|
- nolintlint
|
|
- musttag # causes issues with imported libs
|
|
|
|
# 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
|
|
- makezero
|
|
- maintidx
|
|
|
|
# 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
|
|
- wsl # might be incompatible with gofumpt
|
|
- testpackage
|
|
- paralleltest
|
|
|
|
linters-settings:
|
|
varnamelen:
|
|
ignore-type-assert-ok: true
|
|
ignore-map-index-ok: true
|
|
ignore-names:
|
|
- err
|
|
- db
|
|
- id
|
|
- ip
|
|
- ok
|
|
- c
|
|
- tt
|
|
|
|
gocritic:
|
|
disabled-checks:
|
|
- appendAssign
|
|
# TODO(kradalby): Remove this
|
|
- ifElseChain
|