The R010 analyzer reports when (helper/schema.ResourceData).GetChange() assignments are not using the first return value (assigned to _
), which should be replaced with (helper/schema.ResourceData).Get() instead.
_, n := d.GetChange("example")
n := d.Get("example")
Singular reports can be ignored by adding the a //lintignore:R010
Go code comment at the end of the offending line or on the line immediately proceding, e.g.
//lintignore:R010
_, n := d.GetChange("example")