Skip to content

Commit

Permalink
Make Sphinx check for undefined references & .gitignore _build. (open…
Browse files Browse the repository at this point in the history
  • Loading branch information
Oberon00 committed Jun 27, 2019
1 parent ad7bda6 commit d7d9907
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -47,3 +47,6 @@ htmlcov

# VSCode
.vscode

# Sphinx
_build/
7 changes: 7 additions & 0 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,13 @@
'sphinx.ext.intersphinx',
]

intersphinx_mapping = {'python': ('https://docs.python.org/3/', None)}

# http://www.sphinx-doc.org/en/master/config.html#confval-nitpicky
# Sphinx will warn about all references where the target cannot be found.
nitpicky = True
nitpick_ignore = []

# Add any paths that contain templates here, relative to this directory.
templates_path = ['_templates']

Expand Down

0 comments on commit d7d9907

Please sign in to comment.