Shell

Shell

Made by DeepSource

Consider reformatting SH-1079

Anti-pattern
Major

This is a companion issue for SH-1078 which is triggered by unclosed strings. The quote here is interpreted as the closing quote for the previous string, but appears suspicious due to the character next to it.

Problematic code:

greeting="hello
target="world"

Preferred code:

greeting="hello"
target="world"