From 0468d7623abdab4d7dc5ca60ee5a602372fd77e7 Mon Sep 17 00:00:00 2001 From: "Luke W. Johnston" Date: Mon, 1 Sep 2025 17:31:06 +0200 Subject: [PATCH] refactor: :hammer: ignore `justfile` when listing TODO items --- template/justfile.jinja | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/template/justfile.jinja b/template/justfile.jinja index 0c062d7..645e95e 100644 --- a/template/justfile.jinja +++ b/template/justfile.jinja @@ -14,7 +14,7 @@ run-all: install-deps format-python _checks _tests _builds # List all TODO items in the repository list-todos: - grep -R -n --exclude="*.code-snippets" "TODO" * + grep -R -n --exclude="*.code-snippets" --exclude="justfile" "TODO" * # Install the pre-commit hooks install-precommit: