Files
brianmcgee 0433ba277e feat: switch from cbor to msgpack for serialisation
Memberlist already uses msgpack under the hood and msgpack is performant for what we need.

This also removes a dependency.
2026-01-23 19:24:05 +00:00

39 lines
807 B
YAML

version: "2"
linters:
default: all
disable:
- cyclop
- err113
- depguard
- exhaustruct
- funlen
- godox
- mnd
- varnamelen
- forbidigo
- tagliatelle
- nlreturn
- noinlineerr
- wsl
- ireturn
settings:
cyclop:
max-complexity: 15
revive:
rules:
- name: "exported"
disabled: true
exclusions:
rules:
# Generated enum files use mixed receiver types by design
- path: ".*_enum.*\\.go$"
linters:
- recvcheck
- path: "pkg/msgpack/.*\\.go$"
linters:
- gochecknoinits
- gochecknoglobals