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

The only change needed would be to add an exclaimation point to the end of the leading triple-quote. Otherwise the templating system works well. I'm pasting the template I created...

help wanted
feature request

I have a custom template I'd like to use in all my python projects across several different computers, but the `"autoDocstring.customTemplatePath"` setting only accepts a path relative to the project...

feature request

There is a way to configure more than one custom template? The goal is to set different types of docstring for classes of functions, for instance.

feature request

using the "Format Document (With)" features of VS code; incl. the possibility to change the docstring style

feature request

## What Setting to insert the docstring as raw text, by prepending the opening triple-quotes with 'r'. ## Why When visualizing Math with LaTex in docstring meant for Sphinx and...

bug
feature request

**Describe the bug** Arbitrary argument lists (`*args`) are not included in the list of arguments generated by autoDocstring. **Versions (please complete the following information):** - autoDocstring Version: v0.5.4 - Operating...

bug

This only happens when the quote style is the same as the triple quote string inside the function body. Also happens with non-*f-strings*. See example: ![gif of the issue](https://media.giphy.com/media/KfqE8G6nINjN48Fu0B/giphy.gif) ```python...

bug

Functions implementing [PEP 484](https://www.python.org/dev/peps/pep-0484/) annotate arguments' type in their signature. It feels a bit redundant to mention args type again in docstrings. According to at least [Sphinx Napoleon's doc](https://sphinxcontrib-napoleon.readthedocs.io/en/latest/example_google.html) the...

feature request

**Describe the bug** When generating these docstrings, it works fine when all the params of the function are listed in the same line. However, when the function definition line is...

bug

**Describe the bug** It does not generate correct docstring when defining a class using @dataclass decorator method. It works fine with traditional class initialization. I have even tried with all...

feature request