Reports no-arg method calls with parentheses.

Example:

# Bad practice
gets.chomp()
A quick-fix is available to remove the redundant parentheses. After the quick-fix is applied, the result looks like this:
# Good practice
gets.chomp

Inspired by 'RuboCop'