PEP 12: ignore the template file when building

Also ignore `.venv` as a common virtual environment name.
This commit is contained in:
Brett Cannon 2021-12-06 15:56:51 -08:00
parent cd1e507dd8
commit 885552cec7
1 changed files with 2 additions and 0 deletions

View File

@ -27,12 +27,14 @@ exclude_patterns = [
"Thumbs.db",
".DS_Store",
# Python:
".venv",
"venv",
"requirements.txt",
# Sphinx:
"build",
"output.txt", # Link-check output
# PEPs:
"pep-0012",
"README.rst",
"CONTRIBUTING.rst",
]