26 lines
588 B
YAML
26 lines
588 B
YAML
version: "2"
|
|
linters:
|
|
default: none
|
|
enable:
|
|
- depguard
|
|
- staticcheck
|
|
settings:
|
|
depguard:
|
|
rules:
|
|
protojson:
|
|
deny:
|
|
- pkg: google.golang.org/protobuf/encoding/protojson
|
|
desc: use github.com/livekit/protocol/utils/protojson instead — it sets DiscardUnknown by default to avoid schema-drift footguns
|
|
staticcheck:
|
|
checks:
|
|
- "all"
|
|
- "-ST1000"
|
|
- "-ST1003"
|
|
- "-ST1020"
|
|
- "-ST1021"
|
|
- "-ST1022"
|
|
- "-SA1019"
|
|
- "-QF1008"
|
|
exclusions:
|
|
generated: strict
|