Skip to content

Commit f9f1a3d

Browse files
authored
fix: 🐛 exclude justfile in the list-todos recipe (#153)
# Description Otherwise the recipe flags both the comment and the recipe itself in the `justfile` as TODO items. E.g., in `example-rhesus-monkeys`: <img width="459" height="175" alt="Screenshot 2025-08-19 at 15 39 48" src="https://github.com/user-attachments/assets/f5fdb5a4-6b34-4543-9ff5-682ebd15f861" /> This PR needs a quick review. ## Checklist - [X] Ran `just run-all`
1 parent 00f336c commit f9f1a3d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

template/justfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ run-all: install-deps format-python check-python check-spelling check-commits bu
66

77
# List all TODO items in the repository
88
list-todos:
9-
grep -R -n --exclude="*.code-snippets" "TODO" *
9+
grep -R -n --exclude="*.code-snippets" --exclude="justfile" "TODO" *
1010

1111
# Install the pre-commit hooks
1212
install-precommit:

0 commit comments

Comments
 (0)