mirror of
https://github.com/Aider-AI/aider.git
synced 2025-05-28 16:25:00 +00:00
refactor: Modify file filtering logic in blame script
This commit is contained in:
parent
d40505cd16
commit
c8c58280d8
1 changed files with 1 additions and 0 deletions
|
@ -39,6 +39,7 @@ def blame(start_tag, end_tag=None):
|
|||
or (f.startswith(".github/workflows/") and f.endswith(".yml"))
|
||||
or f in website_files
|
||||
]
|
||||
# include all tests/fixtures/languages/*/test.* ai!
|
||||
files = [f for f in files if not f.endswith("prompts.py")]
|
||||
files = [f for f in files if not f.startswith("tests/fixtures/watch")]
|
||||
files = [f for f in files if f not in exclude_files]
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue