use-returnValue

当调用幂等方法且其返回值未被使用时发出警告。

此规则的错误代码示例:

foo.concat(bar)
baz.concat()

此规则的正确代码示例:

a = foo.concat(bar)
b = baz.concat()