Skip to content

Files

Latest commit

 

History

History
41 lines (27 loc) · 410 Bytes

Style-EmptyHeredoc.md

File metadata and controls

41 lines (27 loc) · 410 Bytes

Pattern: Empty heredoc

Issue: -

Description

Checks for using empty heredoc to reduce redundancy.

Examples

# bad
<<~EOS
EOS

<<-EOS
EOS

<<EOS
EOS

# good
''

# bad
do_something(<<~EOS)
EOS

do_something(<<-EOS)
EOS

do_something(<<EOS)
EOS

# good
do_something('')

Further Reading