Ruby
Unconventional 'for' loop
Info
New
Last modified: 03 December 2024 Reports usages of for
loops. It is preferable to use .each
over for
loops.
Example:
# Bad practice
for i in 0..5
puts "Value is #{i}"
end
A quick-fix is available to convert a for
loop into an .each
loop. After the quick-fix is applied, the result looks like this:
# Good practice
(0..5).each do |i|
puts "Value is #{i}"
end
Inspired by 'Roodi'
- 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.
RubyForLoopInspection
Inspection Details | |
---|---|
By default bundled with: | |
Can be installed with plugin: | Ruby, 243.23135 |
Thanks for your feedback!
Was this page helpful?