From e24c025200ae703aa75ffe99f130854230e0f18d Mon Sep 17 00:00:00 2001 From: dgibbs64 Date: Fri, 15 May 2026 20:27:49 +0000 Subject: [PATCH] chore(sync): synced local './' with remote 'docker/' MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Synced from dgibbs64/repo-sync@c0827cced31890005c2af5b9e7832f8d758ab7df — feat(prettier): add support for additional Prettier plugins * Updated the installation command to include `prettier-plugin-ejs`. * Modified the `prettier_plugins` input to reflect the new plugin addition. --- .devcontainer/devcontainer.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json index 2540d59..49f4d88 100644 --- a/.devcontainer/devcontainer.json +++ b/.devcontainer/devcontainer.json @@ -29,5 +29,5 @@ ] } }, - "postCreateCommand": "npm init -y >/dev/null 2>&1 || true && npm install --no-save prettier prettier-plugin-sh prettier-plugin-jinja-template" + "postCreateCommand": "npm init -y >/dev/null 2>&1 || true && npm install --no-save prettier prettier-plugin-sh prettier-plugin-jinja-template && sudo apt-get update && sudo apt-get install -y ripgrep" }