From 22f140ac05d6fa8b1f0757d521851492925d086a Mon Sep 17 00:00:00 2001 From: Paul Gauthier Date: Fri, 25 Apr 2025 07:54:31 -0700 Subject: [PATCH] feat: Add common file patterns to default gitignore spec --- aider/watch.py | 1 + 1 file changed, 1 insertion(+) diff --git a/aider/watch.py b/aider/watch.py index e7b115730..a575b371f 100644 --- a/aider/watch.py +++ b/aider/watch.py @@ -34,6 +34,7 @@ def load_gitignores(gitignore_paths: list[Path]) -> Optional[PathSpec]: "__pycache__/", # Python cache dir ".DS_Store", # macOS metadata "Thumbs.db", # Windows thumbnail cache + "*.svg", # IDE files ".idea/", # JetBrains IDEs ".vscode/", # VS Code