With the latest commit as of today, 684a742, the default functionality of converting from ReST to Google style docstrings adds type information to the converted docstrings but it is very common to not specify type annotations in docstrings since parsers such as the one (griffe) used in mkdocs/mkdocstrings, can get the information from the actual function signature.
The fact that the default behaviour adds these type annotations in causes a lot of extra work to remove them.
What do you think if we had a way to configure this to be off by default?
Hi,
With the latest commit as of today,
684a742
, the default functionality of converting from ReST to Google style docstrings adds type information to the converted docstrings but it is very common to not specify type annotations in docstrings since parsers such as the one (griffe) used in mkdocs/mkdocstrings, can get the information from the actual function signature.The fact that the default behaviour adds these type annotations in causes a lot of extra work to remove them.
What do you think if we had a way to configure this to be off by default?