summaryrefslogtreecommitdiff
path: root/doc/conf.py
diff options
context:
space:
mode:
authorNed Batchelder <ned@nedbatchelder.com>2014-11-29 10:56:26 -0500
committerNed Batchelder <ned@nedbatchelder.com>2014-11-29 10:56:26 -0500
commit16fab2e08161f9e274c7f2c86aa92a9b31130d0c (patch)
tree2a4c179fea1395fb66593e91a8af47aee1841503 /doc/conf.py
parent04af8e4efbd9365671d39c779cacad66ab27d3f3 (diff)
downloadpython-coveragepy-16fab2e08161f9e274c7f2c86aa92a9b31130d0c.tar.gz
Spelling for the docs also
Diffstat (limited to 'doc/conf.py')
-rw-r--r--doc/conf.py12
1 files changed, 11 insertions, 1 deletions
diff --git a/doc/conf.py b/doc/conf.py
index 16f566f..2f1faf8 100644
--- a/doc/conf.py
+++ b/doc/conf.py
@@ -24,7 +24,13 @@ sys.path.append(os.path.join(os.path.dirname(__file__), "_ext"))
# Add any Sphinx extension module names here, as strings. They can be extensions
# coming with Sphinx (named 'sphinx.ext.*') or your custom ones.
-extensions = ['sphinx.ext.autodoc', 'sphinx.ext.todo', 'sphinx.ext.ifconfig', 'px_xlator']
+extensions = [
+ 'sphinx.ext.autodoc',
+ 'sphinx.ext.todo',
+ 'sphinx.ext.ifconfig',
+ 'sphinxcontrib.spelling',
+ 'px_xlator',
+]
# Add any paths that contain templates here, relative to this directory.
templates_path = ['_templates']
@@ -167,6 +173,10 @@ html_show_sourcelink = False
# Output file base name for HTML help builder.
htmlhelp_basename = 'coveragepydoc'
+# -- Spelling ---
+
+spelling_word_list_filename = 'dict.txt'
+spelling_show_suggestions = False
# -- Options for LaTeX output --------------------------------------------------