We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ffae1fa commit a17a830Copy full SHA for a17a830
2 files changed
aider/coders/agent_coder.py
@@ -1915,7 +1915,7 @@ def get_directory_structure(self):
1915
if line.startswith("??"):
1916
# Extract the filename (remove the '?? ' prefix)
1917
untracked_file = line[3:]
1918
- if not self.repo.git_ignored_file(untracked_file):
+ if not self.repo.ignored_file(untracked_file):
1919
untracked_files.append(untracked_file)
1920
except Exception as e:
1921
self.io.tool_warning(f"Error getting untracked files: {str(e)}")
aider/coders/base_coder.py
@@ -921,7 +921,7 @@ def _include_in_map(abs_path):
921
return False
922
if ".min." in parts[-1]:
923
924
- if self.repo.git_ignored_file(abs_path):
+ if self.repo.ignored_file(abs_path):
925
926
return True
927
0 commit comments