From 06a5fec6129306256cceb1edcdb21c62c9f31d82 Mon Sep 17 00:00:00 2001 From: "Paul Gauthier (aider)" Date: Mon, 18 Nov 2024 13:45:50 -0800 Subject: [PATCH] feat: Include .md files from aider/website/share/ in blame statistics --- scripts/blame.py | 1 + 1 file changed, 1 insertion(+) diff --git a/scripts/blame.py b/scripts/blame.py index 2700b7eec..13ad5d650 100755 --- a/scripts/blame.py +++ b/scripts/blame.py @@ -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")]