diff --git a/acme/docs/conf.py b/acme/docs/conf.py index c4ee0c740..b77b87c45 100644 --- a/acme/docs/conf.py +++ b/acme/docs/conf.py @@ -38,6 +38,9 @@ extensions = [ 'sphinxcontrib.programoutput', ] +autodoc_member_order = 'bysource' +autodoc_default_flags = ['show-inheritance', 'private-members'] + # Add any paths that contain templates here, relative to this directory. templates_path = ['_templates'] diff --git a/letsencrypt-apache/docs/conf.py b/letsencrypt-apache/docs/conf.py index 8dbffdcd8..1f5838fcc 100644 --- a/letsencrypt-apache/docs/conf.py +++ b/letsencrypt-apache/docs/conf.py @@ -37,6 +37,9 @@ extensions = [ 'sphinx.ext.viewcode', ] +autodoc_member_order = 'bysource' +autodoc_default_flags = ['show-inheritance', 'private-members'] + # Add any paths that contain templates here, relative to this directory. templates_path = ['_templates'] diff --git a/letsencrypt-compatibility-test/docs/conf.py b/letsencrypt-compatibility-test/docs/conf.py index 554e71315..066596de7 100644 --- a/letsencrypt-compatibility-test/docs/conf.py +++ b/letsencrypt-compatibility-test/docs/conf.py @@ -38,6 +38,9 @@ extensions = [ 'repoze.sphinx.autointerface', ] +autodoc_member_order = 'bysource' +autodoc_default_flags = ['show-inheritance', 'private-members'] + # Add any paths that contain templates here, relative to this directory. templates_path = ['_templates'] diff --git a/letsencrypt-nginx/docs/conf.py b/letsencrypt-nginx/docs/conf.py index 30093408e..9716ae6d3 100644 --- a/letsencrypt-nginx/docs/conf.py +++ b/letsencrypt-nginx/docs/conf.py @@ -37,6 +37,9 @@ extensions = [ 'sphinx.ext.viewcode', ] +autodoc_member_order = 'bysource' +autodoc_default_flags = ['show-inheritance', 'private-members'] + # Add any paths that contain templates here, relative to this directory. templates_path = ['_templates'] diff --git a/letshelp-letsencrypt/docs/conf.py b/letshelp-letsencrypt/docs/conf.py index 8e7890709..e9d50855b 100644 --- a/letshelp-letsencrypt/docs/conf.py +++ b/letshelp-letsencrypt/docs/conf.py @@ -37,6 +37,9 @@ extensions = [ 'sphinx.ext.viewcode', ] +autodoc_member_order = 'bysource' +autodoc_default_flags = ['show-inheritance', 'private-members'] + # Add any paths that contain templates here, relative to this directory. templates_path = ['_templates']