Default severity: warning
Keep marshal receiver types consistent. Default: standard method families.
Bad
func (value Value) MarshalJSON() ([]byte, error)
func (value *Value) UnmarshalJSON([]byte) errorGood
func (value *Value) MarshalJSON() ([]byte, error)
func (value *Value) UnmarshalJSON([]byte) error