报告多行 if/unless 块中的冗余 then 关键字。

示例:

# 不良做法
if x > y then
  x = y
end
可以通过快速修复来移除 then 关键字。
# 优良做法
if x > y
  x = y
end

'RuboCop' 启发。