terrencepreilly / darglint

A python documentation linter which checks that the docstring description matches the definition.
MIT License
481 stars 41 forks source link

Question: What does darglint do that pylint.extensions.docparams does not? #177

Open adamcunnington-gdt opened 2 years ago

adamcunnington-gdt commented 2 years ago

The README gives a useful overview of how darglint compares with pydocstyle and how it can be a complimentary part of a lint suite.

I am curious whether the author/maintainers are aware of https://pylint.pycqa.org/en/latest/technical_reference/extensions.html#pylint-extensions-docparams and whether there are specific deficiencies/omissions that darglint seeks to address?

adamcunnington-gdt commented 2 years ago

bump (from 21 days ago)

terrencepreilly commented 2 years ago

I'm not aware of it. Feel free to make a comparison and submit a PR to update the README. If I get a chance, I'll try it out. (It looks like it was around when I started this project -- I wish I had known about it then, I could have just contributed to it.) I'll keep this open until someone (or myself) has a chance to look at it.

felixvd commented 2 years ago

Not a comprehensive comment at all, but I stumbled upon this issue and ran both packages cursorily on an example file. My short impressions (read pylint as pylint.extensions.docparams where needed):

Thanks for both this repo and the link to the pylint.extensions.docparams.