From 62a542ab883f8bb43fbcffbb20816c4cf6a51612 Mon Sep 17 00:00:00 2001 From: Sebastien Tardif Date: Sun, 7 Jun 2026 11:13:54 -0700 Subject: [PATCH] fix: exclude .patchloom/ from git tracking and VSIX package The .patchloom/backups/ directory is created by the CLI during testing and normal use. Without these exclusions: - git status shows untracked .patchloom/ for anyone running tests locally - vsce package bundles 70 backup files (8 KB) into the published VSIX Add .patchloom/ to both .gitignore and .vscodeignore. Refs #119 Signed-off-by: Sebastien Tardif --- .gitignore | 1 + .vscodeignore | 1 + 2 files changed, 2 insertions(+) diff --git a/.gitignore b/.gitignore index 7206cb3..f68a5ff 100644 --- a/.gitignore +++ b/.gitignore @@ -4,6 +4,7 @@ out-test/ out-uitest/ *.vsix .vscode-test/ +.patchloom/ .DS_Store .env .env.* diff --git a/.vscodeignore b/.vscodeignore index 693a3a5..ab24d60 100644 --- a/.vscodeignore +++ b/.vscodeignore @@ -1,3 +1,4 @@ +.patchloom/** .vscode/** .vscode-test/** src/**