Ruby

Ruby

Made by DeepSource

Replace with Integer#odd?/Integer#even? RB-ST1046

Anti-pattern
Minor
Autofix

Bad practice

if x % 2 == 0
end

Recommended

if x.even?
end