Skip to content
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
2 changes: 1 addition & 1 deletion .copier-answers.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Changes here will be overwritten by Copier; NEVER EDIT MANUALLY
_commit: 0.9.0
_commit: 0.10.1
_src_path: gh:seedcase-project/t-squared
for_seedcase: true
github_repo: template-python-package
Expand Down
4 changes: 3 additions & 1 deletion justfile
Original file line number Diff line number Diff line change
Expand Up @@ -18,11 +18,13 @@ list-todos:
grep -R -n \
--exclude-dir=.quarto \
--exclude-dir=template \
--exclude-dir=.git \
--exclude-dir=*_cache \
--exclude-dir=_temp \
--exclude-dir=_site \
--exclude=justfile \
--exclude=copier.yaml \
"TODO" *
"TODO" .

# Install the pre-commit hooks
install-precommit:
Expand Down
14 changes: 9 additions & 5 deletions template/justfile.jinja
Original file line number Diff line number Diff line change
Expand Up @@ -23,11 +23,15 @@ build-all: build-contributors build-website build-readme
# List all TODO items in the repository
list-todos:
grep -R -n \
--exclude="*.code-snippets" \
--exclude-dir=.quarto \
--exclude=justfile \
--exclude=_site \
"TODO" *
--exclude-dir=.quarto \
--exclude-dir=template \
--exclude-dir=.git \
--exclude-dir=*_cache \
--exclude-dir=_temp \
--exclude-dir=_site \
--exclude=justfile \
--exclude=copier.yaml \
"TODO" .

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