docformatter icon indicating copy to clipboard operation
docformatter copied to clipboard

Formats docstrings to follow PEP 257

Results 58 docformatter issues
Sort by recently updated
recently updated
newest added

All PRs that have been open for the past several years have been merged. Tag v1.5.0-rc1 is the latest. To use v1.5.0-rc1 in your `.pre-commit-config.yaml`: ``` - repo: https://github.com/PyCQA/docformatter rev:...

V: minor
release

Pull request for release v1.5.0. Bug fixes and documentation only at this point.

V: minor
release

Are there any plans to do this? Is this already implemented?

P: enhancement
C: style
U: low

Hi, I have been trying to configure docformatter using the **pyproject.toml** (this is especially useful for loading the config in pre-commit), but this argument does not exist in the latest...

question
S: feedback

As pointed out in #39, black inserts a space before a one-line or the summary in a multi-line docstring when it begins with a quote (") character. Default behavior for...

P: enhancement
C: style

If a docstring contains a blank line with whitspaces docformatter does not remove them. This does violate the a PEP 8 rule and pycodestyle.py raises "W293 blank line contains whitspaces"....

P: enhancement
C: style
S: feedback

Hi, I have noticed that the docstring puts "." at the summary end but does not make the first letter capital... I think that it could be quite simple to...

P: enhancement
C: convention

Hi there, I noticed that when declaring a class attribute with a docstring `docformatter` doesn't seem to take in account and reformat it. An example: ```python class MyClass: my_attribute: str...

P: enhancement
C: convention

Hi, first, for this nice tool! We crossed some difficulty with long links which are split into multiple lines (when a line is over 120 chars) but then it is...

P: bug
C: style

I'd love to see this project become something (very) big, therefore, I could, **if welcome**, provide in the form of PR a set of configurations for tools typically used by...

question