unused-append-result
Default severity: error
append returns the updated slice header. Discarding that result loses any new
length or reallocated backing array. The check reports only function-local
slices whose backing storage has not escaped or been observably aliased.
values := make([]int, 0); values = append(values, item) // values is never read againvalues = append(values, item)