autoDocstring icon indicating copy to clipboard operation
autoDocstring copied to clipboard

VSCode extension that generates docstrings for python files

Results 102 autoDocstring issues
Sort by recently updated
recently updated
newest added

I tried to change the docstring format to **sphinx**, but it didn't work and it only gave me [summary] (as if it ignored the args, kwargs, etc..) I also tried...

bug

When making a top-level docstring, I usually just want to indicate what the functions in a particular file do. The generated placeholder docstring on the other hand contains all the...

I know this is an inconsequential and mostly meaningless task, but I can't help that it bothers that the art for this extension is that _ugly_ (sorry, in my opinion)...

Much of my code has a sanity check around a function's arguments e.g., ``` if not isinstance(param1, str): raise TypeError("param1 must be a string") ``` It would be nice if...

feature request

Hi I know that this is a long shot, but would it be possible to add support for doxygen? Sometimes it is required for me at work and I live...

feature request

**Describe the bug** When using a template file a error occured **Versions (please complete the following information):** - autoDocstring Version: 0.5.3 - Operating System: Pop OS 20.04 - Vscode Version:...

bug

Hi @NilsJPWerner I published the `autoDocstring` extension to the [Open VSX Registry](https://open-vsx.org/extension/njpwerner/autodocstring). Right now anybody can publish to the namespace `njpwerner`. However, to get exclusive control over that namespace and...

When a function returns `len(whatever)`, `autoDocstring`should infer that return type is `int` **Versions (please complete the following information):** - autoDocstring Version: 0.5.1 - Operating System: macOS - Vscode Version: 1.44.2...

feature request

Currently we get something like this: ``` [summary] Args: first_arg (list): [description] arg123 (list): [description] arg3 (bool): [description] ``` Is there any way (via custom templates or otherwise) to get...

feature request

```python def configure_extensions(app: Application): """Register and configure framework extensions. :param app: application object :type app: Application :return: [description] :rtype: [type] """ babel.init_app(app) csrf.init_app(app) bootstrap.init_app(app) login_manager.init_app(app) login_manager.login_view = 'auth.login' login_manager.login_message_category =...

bug