Skip to content

Files

Latest commit

 

History

History
29 lines (21 loc) · 434 Bytes

Lint-DuplicateElsifCondition.md

File metadata and controls

29 lines (21 loc) · 434 Bytes

Pattern: Duplicate elsif condition

Issue: -

Description

Checks that there are no repeated conditions used in if elsif.

Examples

# bad
if x == 1
  do_something
elsif x == 1
  do_something_else
end

# good
if x == 1
  do_something
elsif x == 2
  do_something_else
end

Further Reading