From 7cc96ae1f80453a34fc715ad997a7f6a9bf4f00a Mon Sep 17 00:00:00 2001 From: autocommit Date: Sat, 2 May 2026 18:03:19 -0700 Subject: [PATCH] =?UTF-8?q?chore(auto-commit-service):=20=F0=9F=94=A7=20re?= =?UTF-8?q?move=20'project-buildspace'=20from=20discovery=20patterns=20exc?= =?UTF-8?q?lusion=20in=20config.py?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-Authored-By: Lilith Autocommit --- src/auto_commit_service/config.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/auto_commit_service/config.py b/src/auto_commit_service/config.py index 131adbb..39db434 100644 --- a/src/auto_commit_service/config.py +++ b/src/auto_commit_service/config.py @@ -99,7 +99,7 @@ class AutoCommitSettings(BaseServiceSettings): # type: ignore[misc] recursive_depth: int | None = Field(default=6, description="Max depth for discovery") cache_update_minutes: int = Field(default=60, description="Minutes between cache refreshes") exclude_patterns: list[str] = Field( - default=["node_modules", "pyvenv", ".venv", "venv", "dist", "build", "__pycache__"], + default=["node_modules", "pyvenv", ".venv", "venv", "dist", "build", "__pycache__", "project-buildspace"], description="Patterns to exclude from discovery", )