From 39a989166857edabf991f0d2e108af78b4c5b631 Mon Sep 17 00:00:00 2001 From: "Luke W. Johnston" Date: Wed, 12 Aug 2026 16:14:27 +0200 Subject: [PATCH] =?UTF-8?q?refactor:=20=F0=9F=94=A8=20find=20TODO=20items?= =?UTF-8?q?=20in=20all=20files?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .copier-answers.yml | 2 +- justfile | 4 +++- template/justfile.jinja | 14 +++++++++----- 3 files changed, 13 insertions(+), 7 deletions(-) diff --git a/.copier-answers.yml b/.copier-answers.yml index 1e506cb..0bdb19d 100644 --- a/.copier-answers.yml +++ b/.copier-answers.yml @@ -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 diff --git a/justfile b/justfile index 7f09ca7..daafbe8 100644 --- a/justfile +++ b/justfile @@ -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: diff --git a/template/justfile.jinja b/template/justfile.jinja index 15dee16..077a576 100644 --- a/template/justfile.jinja +++ b/template/justfile.jinja @@ -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: