autoDocstring
autoDocstring copied to clipboard
VSCode extension that generates docstrings for python files
**Describe the bug** My daily development work is done by connecting to a remote server via Remote-ssh under Windows 10. I defined a custom template and specified the path: ```...
Following the Google style guide examples, e.g., under the [Functions and Methods](https://google.github.io/styleguide/pyguide.html#383-functions-and-methods) section, this PR moves the `Raises` section below the `Returns` section and adds `.` after placeholders.
**Describe the bug** When using autoDocstring to generate a docstring for a function that returns a union type like `str | None`, the generated docstring omits parentheses around the return...
Fixed pattern for return and yield as a part of variable name.
**Describe the bug** Autodocstring does not generate a docstring when the method we are trying to document has """ as the default value to a parameter. **Versions (please complete the...
To support environment variables in path of setting 'customTemplatePath' would make it easier to define absolute paths on different machines/platforms. Variables definitions are platform dependent, e.g. - Unix/Linux => `$HOME`...
Hello! There are very few conditions for applying one or another template. For example, if the function name contains a test word, then we apply a template for the test....
# What Docstring should be regenerated when the function arguments are updated. For example ```py def search(self, request:model.Request, k=2) -> list[model.Response]: """Searchs for vectors closest to the request Args: request...
Introduce new functionality for updating docstrings, improve docstring normalization, and streamline the publish and test workflows. This update also includes various enhancements to type hint parsing and documentation.