-
Notifications
You must be signed in to change notification settings - Fork 552
Closed
Labels
Description
I'm looking to have my contiguous commands be indented extra but I can't find what formatter this extension uses to potentially change it's config file:
FROM debian:buster-slim
RUN \
export DEBIAN_FRONTEND=noninteractive \
&& apt-get update \
&& apt-get install --assume-yes --no-install-recommends --no-install-suggests \
bash \
ca-certificates \
curl \
gnupg \
unzip \
&& rm -rf /var/lib/apt/lists/*Currently it formats like:
FROM debian:buster-slim
RUN \
export DEBIAN_FRONTEND=noninteractive \
&& apt-get update \
&& apt-get install --assume-yes --no-install-recommends --no-install-suggests \
bash \
ca-certificates \
curl \
gnupg \
unzip \
&& rm -rf /var/lib/apt/lists/*Reactions are currently unavailable