We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b3dd930 commit 7e55dfeCopy full SHA for 7e55dfe
docs/conf.py
@@ -50,7 +50,13 @@
50
# List of patterns, relative to source directory, that match files and
51
# directories to ignore when looking for source files.
52
# This pattern also affects html_static_path and html_extra_path.
53
-exclude_patterns = ['_build', 'Thumbs.db', '.DS_Store', '.venv']
+# see https://www.sphinx-doc.org/en/master/usage/configuration.html#confval-exclude_patterns
54
+exclude_patterns = [
55
+ 'processes', # internal docs
56
+ '_build', # build target
57
+ '.*', '**/.*', # dotfiles and folders
58
+ 'Thumbs.db', '**/Thumbs.db',
59
+]
60
61
# -- Options for HTML output -------------------------------------------------
62
0 commit comments