Skip to content

Commit

Permalink
Filter various directories by default
Browse files Browse the repository at this point in the history
  • Loading branch information
AA-Turner committed Sep 18, 2024
1 parent 3fab261 commit 0f2f2f1
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions sphinx_autobuild/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,20 @@ def main(argv=()):

watch_dirs = [src_dir] + args.additional_watched_dirs
ignore_dirs = [
".git",
".hg",
".idea",
".mypy_cache",
"node_modules",
".nox",
".ruff_cache",
".pytest_cache",
".pytype",
".svn",
".tox",
".venv",
"venv",
".vscode",
*args.ignore,
out_dir,
args.warnings_file,
Expand Down

0 comments on commit 0f2f2f1

Please sign in to comment.