Redundant parentheses in no-arg method call
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'
Inspection Details | |
---|---|
Available in: | Qodana for Ruby 2023.3, RubyMine 2023.3 |
Plugin: | Ruby, 233.SNAPSHOT |
Last modified: 13 July 2023