For some reason, WebStorm (by JetBrains) marks the following simple GoLang struct as error. Specifically, it does not like string
type Person struct {
Name string `json:"name"`
Address string `json:"address"`
}
But from the looks of it, there is nothing wrong with this? Is there a plugin I am missing in WebStorm?