Reports redundant then keywords in multiline if/unless blocks.

Example:

# Bad practice
if x > y then
  x = y
end
A quick-fix is available to remove the then keyword.
# Good practice
if x > y
  x = y
end

Inspired by 'RuboCop'.