Skip to content

Commit

Permalink
MAINT: simplify sphinx-autobuild ignore patterns
Browse files Browse the repository at this point in the history
  • Loading branch information
redeboer committed Oct 15, 2024
1 parent 14d98c0 commit 2615135
Showing 1 changed file with 11 additions and 11 deletions.
22 changes: 11 additions & 11 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -448,22 +448,22 @@ allowlist_externals =
commands =
sphinx-autobuild \
--builder=html \
--ignore=docs/_build/ \
--ignore=docs/_images/ \
--ignore=docs/_static/logo.* \
--ignore=docs/api/ \
--open-browser \
--port=0 \
--re-ignore='.*/__pycache__/.*' \
--re-ignore='.*/.ipynb_checkpoints/.*' \
--re-ignore='.*/.virtual_documents/.*' \
--re-ignore='.*\\.csv' \
--re-ignore='.*\\.gv' \
--re-ignore='.*\\.inv' \
--re-ignore='.*\\.json' \
--re-ignore='.*\\.pickle' \
--re-ignore='.*\\.tmp' \
--re-ignore='docs/_build/.*' \
--re-ignore='docs/_images/.*' \
--re-ignore='docs/_static/logo\\..*' \
--re-ignore='docs/.*\\.csv' \
--re-ignore='docs/.*\\.gv' \
--re-ignore='docs/.*\\.inv' \
--re-ignore='docs/.*\\.json' \
--re-ignore='docs/.*\\.pickle' \
--re-ignore='docs/.*\\.yaml' \
--re-ignore='docs/.*\\.yml' \
--re-ignore='docs/api/.*' \
--re-ignore='.*\\.ya?ml' \
--watch=docs \
--watch=src \
docs/ docs/_build/html
Expand Down

0 comments on commit 2615135

Please sign in to comment.