From 94b32cef7032cea900aeee905214cb6f0eaa0768 Mon Sep 17 00:00:00 2001 From: Adam Turner <9087854+AA-Turner@users.noreply.github.com> Date: Mon, 24 Jan 2022 23:47:21 +0000 Subject: [PATCH] Exclude `.codespell` from Sphinx (#2264) --- conf.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/conf.py b/conf.py index 60ffa7b27..4081564b7 100644 --- a/conf.py +++ b/conf.py @@ -41,6 +41,8 @@ exclude_patterns = [ "README.rst", "CONTRIBUTING.rst", "pep_sphinx_extensions/LICENCE.rst", + # Miscellaneous + ".codespell", ] # -- Options for HTML output -------------------------------------------------