feat: Include .md files from aider/website/share/ in blame statistics

This commit is contained in:
Paul Gauthier (aider) 2024-11-18 13:45:50 -08:00
parent 46ecb8a663
commit 06a5fec612

View file

@ -25,6 +25,7 @@ def blame(start_tag, end_tag=None):
for f in files
if f.endswith((".py", ".scm", ".sh", "Dockerfile", "Gemfile"))
or (f.startswith(".github/workflows/") and f.endswith(".yml"))
or (f.startswith("aider/website/share/") and f.endswith(".md"))
]
files = [f for f in files if not f.endswith("prompts.py")]