Skip to content

Commit

Permalink
add member-order and exclude-members
Browse files Browse the repository at this point in the history
  • Loading branch information
RLKRo committed Oct 12, 2023
1 parent d97a569 commit 65513a7
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,13 @@
]


autodoc_default_options = {"members": True, "undoc-members": False, "private-members": True}
autodoc_default_options = {
"members": True,
"undoc-members": False,
"private-members": True,
"member-order": "bysource",
"exclude-members": "_abc_impl, model_fields",
}


def setup(_):
Expand Down

0 comments on commit 65513a7

Please sign in to comment.