When formatting this with prettier-plugin-sh@0.14.0 it doesn't keep the \ and the indenting which ends up with the Dockerfile being invalid.
# Before
ENV a=1 \
b=2 \
# comment
c=3 \
d=4 \
# comment
e=5
# After
ENV a=1 \
b=2
# comment
c=3 \
d=4
# comment
e=5