summaryrefslogtreecommitdiffstats
path: root/docs/conf.py
diff options
context:
space:
mode:
Diffstat (limited to 'docs/conf.py')
-rw-r--r--docs/conf.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/docs/conf.py b/docs/conf.py
index 2c40177..8a03b2f 100644
--- a/docs/conf.py
+++ b/docs/conf.py
@@ -1,17 +1,17 @@
# yamllint documentation build configuration file, created by
# sphinx-quickstart on Thu Jan 21 21:18:52 2016.
-import sys
import os
+import sys
from unittest.mock import MagicMock
sys.path.insert(0, os.path.abspath('..'))
-
-from yamllint import __copyright__, APP_NAME, APP_VERSION # noqa
+from yamllint import __copyright__, APP_NAME, APP_VERSION # noqa: I001, E402
# -- General configuration ------------------------------------------------
extensions = [
+ 'sphinx_rtd_theme',
'sphinx.ext.autodoc',
]
@@ -29,7 +29,7 @@ pygments_style = 'sphinx'
# -- Options for HTML output ----------------------------------------------
-html_theme = 'default'
+html_theme = 'sphinx_rtd_theme'
htmlhelp_basename = 'yamllintdoc'