From e6559f9976686c06098aca052a0f86d3d116706c Mon Sep 17 00:00:00 2001 From: Taylor Salo Date: Wed, 14 Jul 2021 17:55:27 -0400 Subject: [PATCH] [DOC] Change napoleon settings (#540) --- docs/conf.py | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/docs/conf.py b/docs/conf.py index c78804ac5..f31885d87 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -27,9 +27,10 @@ sys.path.insert(0, os.path.abspath(os.path.pardir)) sys.path.insert(0, os.path.abspath("sphinxext")) -import nimare from github_link import make_linkcode_resolve +import nimare + # -- General configuration ------------------------------------------------ # If your documentation needs a minimal Sphinx version, state it here. @@ -105,11 +106,11 @@ # ----------------------------------------------------------------------------- # Napoleon settings # ----------------------------------------------------------------------------- -napoleon_google_docstring = True +napoleon_google_docstring = False napoleon_numpy_docstring = True -napoleon_include_init_with_doc = False +napoleon_include_init_with_doc = True napoleon_include_private_with_doc = False -napoleon_include_special_with_doc = True +napoleon_include_special_with_doc = False napoleon_use_admonition_for_examples = False napoleon_use_admonition_for_notes = False napoleon_use_admonition_for_references = False