summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorErik Faye-Lund <erik.faye-lund@collabora.com>2023-03-10 16:06:55 +0100
committerMarge Bot <emma+marge@anholt.net>2023-04-26 22:45:41 +0000
commit3e612aa86e0267de43607a865aa88159fc0aad5f (patch)
tree0cbbe1bd078ab51e7c53239de886f319239bc149 /docs
parentad1e64551d1ad76d8c9f8cac40deba53316d753f (diff)
downloadmesa-3e612aa86e0267de43607a865aa88159fc0aad5f.tar.gz
docs: sort extensions
It's easier to keep this sorted if we have each element on a separate line. Let's do that for long-term ease of maintainability. Reviewed-by: Eric Engestrom <eric@igalia.com> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/8399>
Diffstat (limited to 'docs')
-rw-r--r--docs/conf.py8
1 files changed, 7 insertions, 1 deletions
diff --git a/docs/conf.py b/docs/conf.py
index 951519414c9..edee6d9a789 100644
--- a/docs/conf.py
+++ b/docs/conf.py
@@ -38,7 +38,13 @@ sys.path.append(os.path.abspath('_exts'))
# 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.graphviz', 'breathe', 'formatting', 'nir', 'redirects']
+extensions = [
+ 'breathe',
+ 'formatting',
+ 'nir',
+ 'redirects',
+ 'sphinx.ext.graphviz',
+]
# Add any paths that contain templates here, relative to this directory.
templates_path = ['_templates']