autoDocstring
autoDocstring copied to clipboard
VSCode extension that generates docstrings for python files
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...
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...
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...
**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:...
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...
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...
```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 =...