Skip to content
Snippets Groups Projects
Commit dea59613 authored by Jani Nikula's avatar Jani Nikula Committed by Jani Nikula
Browse files

doc: exclude dot dirs from Sphinx builds


It's handy to place e.g. a Python virtual environment in a .venv
subdirectory. The virtual environments contain .rst files, which cause
Sphinx warnings when Sphinx descends to them. Just exclude all dot dirs
from Sphinx builds.

Signed-off-by: default avatarJani Nikula <jani.nikula@intel.com>
parent 70095edd
No related branches found
No related tags found
1 merge request!62maintainer tools documentation overhaul
...@@ -17,7 +17,7 @@ release = '1.0' ...@@ -17,7 +17,7 @@ release = '1.0'
extensions = [] extensions = []
templates_path = ['_templates'] templates_path = ['_templates']
exclude_patterns = ['_build', 'Thumbs.db', '.DS_Store', 'README.rst'] exclude_patterns = ['_build', 'Thumbs.db', '.DS_Store', 'README.rst', '.*']
root_doc = 'index' root_doc = 'index'
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment