Ruby
Whitespace before parentheses in method call
Warning
New
Last modified: 03 December 2024 Reports method calls (including yield
) with whitespace before its parentheses.
# Bad practice
puts ('Hello world!')
# Good practice
puts('Hello world!')
Inspired by 'RuboCop'
- By ID
Can be used to locate inspection in e.g. Qodana configuration files, where you can quickly enable or disable it, or adjust its settings.
RubyArgumentParentheses
Inspection Details | |
---|---|
By default bundled with: | |
Can be installed with plugin: | Ruby, 243.23135 |
Thanks for your feedback!
Was this page helpful?