报告在复合字面、函数调用参数和函数参数列表中缺少换行前的尾随逗号。

示例:

func f(f int) (
 int,
 bool   // 缺少尾随逗号
){
 println(1, 2  // 缺少尾随逗号
 )
}