Initializing Struct References
Use &T{} instead of new(T) when initializing struct references so that it
is consistent with the struct initialization.
| Bad | Good |
|---|---|
| ```go sval := T{Name: "foo"} // inconsistent sptr := new(T) sptr.Name = "bar" ``` | ```go sval := T{Name: "foo"} sptr := &T{Name: "bar"} ``` |