From 8bd3706994843b31900975825e19aec35641e92d Mon Sep 17 00:00:00 2001 From: Chris Lovering Date: Wed, 23 Mar 2022 21:39:43 +0000 Subject: Add BotBase that will act as a base for all our bots This commit also modifies the extensions util, since it's now directly used by bot-core. Co-authored-by: Mark <1515135+MarkKoz@users.noreply.github.com> Co-authored-by: Hassan Abouelela --- docs/conf.py | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'docs') diff --git a/docs/conf.py b/docs/conf.py index 47c788df..8b55b58a 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -107,6 +107,14 @@ def setup(app: Sphinx) -> None: app.connect("autodoc-skip-member", skip) +ignored_modules = [ + "async_rediscache", +] + +nitpick_ignore_regex = [ + ("py:.*", "|".join([f".*{entry}.*" for entry in ignored_modules])), +] + # -- Extension configuration ------------------------------------------------- # -- Options for todo extension ---------------------------------------------- -- cgit v1.2.3