Pattern: Malformed heredoc indentation
Issue: -
This rule checks the indentation of the here document bodies. The bodies are indented one step.
# bad
<<-RUBY
something
RUBY
# good
<<~RUBY
something
RUBY
Pattern: Malformed heredoc indentation
Issue: -
This rule checks the indentation of the here document bodies. The bodies are indented one step.
# bad
<<-RUBY
something
RUBY
# good
<<~RUBY
something
RUBY