Skip to content

receiver-naming

Default severity: warning

Rejects receiver names this and self, and requires every method on the same receiver type to use the same receiver name. It does not derive or enforce a particular abbreviation and does not impose a maximum length.

func (self *Client) Send() error
func (c *Client) Send() error