Skip to content

Files

Latest commit

 

History

History
30 lines (21 loc) · 382 Bytes

Lint-EmptyWhen.md

File metadata and controls

30 lines (21 loc) · 382 Bytes

Pattern: Empty when

Issue: -

Description

This rule checks for the presence of when branches without a body.

Examples

# bad

case foo
when bar then 1
when baz then # nothing
end
# good

case foo
when bar then 1
when baz then 2
end

Further Reading