Skip to content

Commit

Permalink
Try adding more classes to ignore in nitpick
Browse files Browse the repository at this point in the history
Signed-off-by: Merel Theisen <[email protected]>
  • Loading branch information
merelcht committed Apr 27, 2023
1 parent 7d106a9 commit 677ccb9
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 @@ -55,7 +55,7 @@
"notfound.extension",
]

# enable autosummary plugin (table of contents for modules/classes/class
# enable autosummary plugin (table of contents for modules/classes/class
# methods)
autosummary_generate = True
autosummary_generate_overwrite = False
Expand Down Expand Up @@ -102,6 +102,9 @@
"tuple",
"Any",
"Dict",
"dict",
"list",
"set",
"typing.Dict",
"typing.Iterable",
"typing.List",
Expand All @@ -122,7 +125,9 @@
"kedro.framework.context.context.KedroContext",
"kedro.framework.startup.ProjectMetadata",
"abc.ABC",
"Path",
"pathlib.Path",
"PurePosixPath",
"pathlib.PurePosixPath",
"requests.auth.AuthBase",
"google.oauth2.credentials.Credentials",
Expand All @@ -133,6 +138,7 @@
"kedro.extras.datasets.pandas.json_dataset.JSONDataSet",
"kedro.datasets.pandas.json_dataset.JSONDataSet",
"pluggy._manager.PluginManager",
"PluginManager",
"_DI",
"_DO",
# The statements below were added after subclassing UserDict in AbstractConfigLoader.
Expand Down

0 comments on commit 677ccb9

Please sign in to comment.