You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Warn when escaping interpolation in heredocs to use the quoted heredoc form instead. This shouldn't warn when the heredoc is also interpolated.
<<-DOC# ^^^^ error: Use `<<-`DOC`` instead of `<<-DOC` to automatically escape interpolationHere is how you interpolate strings: "\#{thing}".DOC# Should be:<<-'DOC'Here is how you interpolate strings:"#{thing}".
DOC
(GitHub syntax highlighting for Crystal should probably also be updated to support this at some point, or just have them move to the tree sitter)
The text was updated successfully, but these errors were encountered:
Warn when escaping interpolation in heredocs to use the quoted heredoc form instead. This shouldn't warn when the heredoc is also interpolated.
(GitHub syntax highlighting for Crystal should probably also be updated to support this at some point, or just have them move to the tree sitter)
The text was updated successfully, but these errors were encountered: