-
Notifications
You must be signed in to change notification settings - Fork 0
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
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Oo, I like this! 🌟 Just a suggestion:
template/justfile
Outdated
@@ -4,6 +4,10 @@ | |||
# Run all build-related recipes in the justfile | |||
run-all: install-deps format-python check-python check-spelling check-commits | |||
|
|||
# List all TODO items in the repository | |||
list-todos: | |||
grep -R -n --exclude="*.code-snippets" "TODO:" * |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
You could remove the :
in case it was forgotten somewhere?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Nice! Just one more suggestion 😁
Co-authored-by: Signe Kirk Brødbæk <40836345+signekb@users.noreply.github.com>
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
👌 👌
Description
There are several TODO items sprinkled throughout the template that need to be addressed after creating the template. This adds a recipe to make it easier to list them.
This PR needs a quick review.