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: