From 3babe3a7784a0e58e58a7359e325bd2559afa7b9 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Sat, 28 Mar 2026 18:55:45 +0000 Subject: [PATCH] chore: improve .vscodeignore to reduce extension package size Add missing exclusions to .vscodeignore: - .github/**: workflow files have no place in the published extension - node_modules/**: safety net; no runtime deps but explicit is safer - .gitattributes: VCS metadata, not needed by end users - images/phpcbf-preview.gif: README-only animated preview (~160 KB) The logo.png (referenced as "icon" in package.json) is kept. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> --- .vscodeignore | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.vscodeignore b/.vscodeignore index 499648c..c74f3c1 100644 --- a/.vscodeignore +++ b/.vscodeignore @@ -1,7 +1,11 @@ .vscode/** .vscode-test/** +.github/** test/** +node_modules/** .gitignore +.gitattributes jsconfig.json vsc-extension-quickstart.md .eslintrc.json +images/phpcbf-preview.gif