diff options
author | 2022-03-23 21:39:43 +0000 | |
---|---|---|
committer | 2022-03-24 08:25:16 +0000 | |
commit | 8bd3706994843b31900975825e19aec35641e92d (patch) | |
tree | a94f618f5cb836c367fb0dd84ac4b4bd05903941 /docs/conf.py | |
parent | Add async_stats subclass of statsd (diff) |
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 <[email protected]>
Co-authored-by: Hassan Abouelela <[email protected]>
Diffstat (limited to 'docs/conf.py')
-rw-r--r-- | docs/conf.py | 8 |
1 files changed, 8 insertions, 0 deletions
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 ---------------------------------------------- |