Releases: jsh9/pydoclint
Releases · jsh9/pydoclint
0.0.5
What's Changed
- Allow no return section in docstring by @jsh9 in #10
- Parse options from config file by @jsh9 in #11
- Allow no return section in property methods by @jsh9 in #13
Full Changelog: 0.0.4...0.0.5
0.0.4
- Added
- A new violation,
DOC001
, for errors in parsing docstrings (PR #8)
- A new option to allow
__init__()
methods to have docstring (and when
users activate this option, check arguments and "Raises" in the docstring
of __init__()
instead of in the class docstring) (PR #7)
- Changed
- Used AST unparser to unparse type annotation nodes (2ed40f7)
- Fixed
- A bug when parsing type annotations such as
Callable[[int], str]
(64f6250)
- Full changelog
0.0.1
This is the initial release.