From ce8314788f6bd4cf430d0bdfaec33458533034ee Mon Sep 17 00:00:00 2001 From: Yuriy Andamasov Date: Tue, 28 Jul 2026 03:13:48 +0300 Subject: docs: exclude superpowers/ from the Sphinx build MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit `docs/superpowers/` holds Claude Code plugin-generated internal design specs and plans, not user documentation. Adding `superpowers` to `exclude_patterns` guards against Sphinx ever picking the directory up and publishing it should it reappear in the source tree. Guard only — the content itself was already removed in 3ab97e71 and abb8be5b. (cherry picked from commit a9dc16aac2a7e7a6e5e4bb1c19897b3d707ba4d1) --- docs/conf.py | 1 + 1 file changed, 1 insertion(+) diff --git a/docs/conf.py b/docs/conf.py index 920ea07b..22d2e9c3 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -91,6 +91,7 @@ gettext_uuid = False exclude_patterns = [ u'_build', 'Thumbs.db', '.DS_Store', '_include/vyos-1x', '_rst_legacy', + 'superpowers', ] # The name of the Pygments (syntax highlighting) style to use. -- cgit v1.2.3