Skip to content

feat: ✨ add recipe to template justfile to list all TODO items #79

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 5 commits into from
Jul 15, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions template/README.md.jinja
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
## Post-setup steps

- Run `just list-todos` to get a list of TODO items you need to fill out.
4 changes: 4 additions & 0 deletions template/justfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,10 @@
run-all: install-deps format-python check-python check-spelling check-commits build


# List all TODO items in the repository
list-todos:
grep -R -n --exclude="*.code-snippets" "TODO" *

# Install the pre-commit hooks
install-precommit:
# Install pre-commit hooks
Expand Down