summaryrefslogtreecommitdiff
path: root/pylint/extensions/check_docs.py
Commit message (Expand)AuthorAgeFilesLines
* Update copyright notice with copyritePierre Sassoulas2021-02-281-0/+1
* Apply copyrite --contribution-thresholdPierre Sassoulas2021-02-211-0/+1
* Sets up copyrighthippo912020-08-201-1/+1
* Add missing copyright annotations for the past releasesClaudiu Popa2020-04-271-1/+1
* Reformat the code with blackClaudiu Popa2018-09-171-2/+4
* Even more granular copyrights (thanks to copyrite)Claudiu Popa2016-07-231-2/+4
* Keep a consistent copyright notice across the board.Claudiu Popa2016-07-191-0/+2
* Remove trailing line.Claudiu Popa2016-07-071-1/+0
* Add a check_docs file, that registers into docparams, for maintaining backwar...Claudiu Popa2016-07-071-0/+18
* Move the docstring param checker to docparams.py.Claudiu Popa2016-06-301-295/+0
* Rename the docstring parameter checker to something that suggest more clearly...Claudiu Popa2016-06-301-3/+3
* Fixed our docstring lint errorsAshley Whetter2016-06-251-0/+1
* check_docs warns for redundant return docstring (#929)Ashley Whetter2016-06-051-3/+17
* Add the new shorter license header, including to missing files. Close #894.Claudiu Popa2016-06-011-0/+3
* Check docs improvements (#918)Ashley Whetter2016-05-301-2/+2
* Added return docstring checking to check_docs (#914)Ashley Whetter2016-05-251-1/+28
* Added a new extension for checking documented exceptions raised (#904)Ashley Whetter2016-05-201-175/+77
* [ADD] check_docs can find constructor parameters in __init__ (#887)Ashley Whetter2016-04-301-7/+44
* Take in account kwonlyargs when verifying that arguments are definedClaudiu Popa2016-01-091-1/+1
* Use the new node names for the visit and leave methodsClaudiu Popa2015-08-261-1/+1
* Cleanup.Claudiu Popa2015-05-111-35/+27
* Change the name of the parameter checker, so that it can be chosen easily at ...Claudiu Popa2015-05-101-1/+1
* method visit_class is no longer necessary in the checker; auxiliary method _v...Bruno Daniel2015-05-101-11/+0
* check_docs: Handle class constructors from within visit_function.Bruno Daniel2015-05-101-10/+17
* accept-no-param-doc turned into a yes/no option; documentation for this param...Bruno Daniel2015-05-101-2/+1
* check_docs: implementation of option "accept-no-param-doc"Bruno Daniel2015-05-101-2/+10
* better naming, because the checker now supports not just the Sphinx styleBruno Daniel2015-05-101-22/+21
* unittest for Google style parameter documentation; first implementation of Go...Bruno Daniel2015-05-101-28/+130
* check_docs: Emit error messages only when it detects that at least one :param...Bruno Daniel2015-05-081-1/+10
* Tolerate no Sphinx parameter documentation at all: unit testBruno Daniel2015-05-081-0/+206