@@ -21,14 +21,41 @@ plugins:
2121 python :
2222 setup_commands :
2323 - import docs.sys_modules_mock
24- rendering :
24+ options :
25+ # Include all public members, not just those in __all__
26+ members : true
27+ inherited_members : false
28+ # Show all submodules automatically
29+ show_submodules : true
30+ # Include functions, classes, modules, attributes
31+ docstring_style : google
32+ # Selection options
33+ filters :
34+ - " !^_" # Exclude private members (starting with _)
35+ - " ^__init__$" # But include __init__ methods
36+ - " ^__new__$" # And __new__ methods
37+ # Rendering options
2538 show_source : true
39+ show_root_heading : true
40+ show_root_toc_entry : true
41+ show_object_full_path : false
42+ show_category_heading : true
43+ # Group members by category
44+ group_by_category : true
45+ # Show type annotations
46+ show_signature_annotations : true
47+ # Show return type annotations
48+ show_return_annotations : true
49+ # Show the bases of classes
50+ show_bases : true
51+ # Merge init method documentation into class docstring
52+ merge_init_into_class : true
2653
2754# This setting ensures links don't use directory URLs
2855use_directory_urls : false
2956
3057copyright : >
31- Copyright © 2022 ZenML GmbH –
58+ Copyright © 2025 ZenML GmbH –
3259 <a href="#__consent">Change cookie settings</a>
3360
3461extra :
0 commit comments