summaryrefslogtreecommitdiff
path: root/pylint/extensions
Commit message (Collapse)AuthorAgeFilesLines
* fix elif-used ruleLaura M?dioni2015-11-301-18/+4
| | | | The bug was introduced when porting the rule from pylint core to an extension
* pylint extension to check for use of "else if" instead of "elsif"Laura M?dioni2015-11-271-0/+76
| | | | related to issue #673
* Use the new node names for the visit and leave methodsClaudiu Popa2015-08-261-1/+1
| | | | | Also, emit a PendingDeprecationWarning if the old names are still used, this support being removed in pylint 2.0.
* 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
| | | | command line.
* Move extensions/test to pylint.test, so they could be tested along with the ↵Claudiu Popa2015-05-101-644/+0
| | | | rest of the tests.
* further unit test for space_indentationBruno Daniel2015-05-101-0/+1
|
* method visit_class is no longer necessary in the checker; auxiliary method ↵Bruno Daniel2015-05-102-17/+18
| | | | _visit_methods_of_class in the unit test
* 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 ↵Bruno Daniel2015-05-101-2/+1
| | | | parameter
* unit test for the option accept_no_param_docBruno Daniel2015-05-101-1/+26
|
* check_docs: implementation of option "accept-no-param-doc"Bruno Daniel2015-05-101-2/+10
|
* pylint documentation: Demonstrate parameter documentation checking for ↵Bruno Daniel2015-05-101-1/+1
| | | | Google and Numpy style as well.
* better naming, because the checker now supports not just the Sphinx styleBruno Daniel2015-05-102-58/+57
|
* unit test for constructor parameter documentation in Google and Numpy styleBruno Daniel2015-05-101-1/+68
|
* unit test for see sentence in Google and Numpy style docstringBruno Daniel2015-05-101-2/+42
|
* unit test for wrong names of function params in Google and numpy style ↵Bruno Daniel2015-05-101-2/+110
| | | | docstrings
* unit tests for correctly documented parameters and return values (all 3 styles)Bruno Daniel2015-05-101-2/+53
|
* unit tests for Google and Numpy style in class methodsBruno Daniel2015-05-101-2/+62
|
* unit test for Numpy style parameter documentation; improvements of other ↵Bruno Daniel2015-05-101-9/+40
| | | | unit tests
* unittest for Google style parameter documentation; first implementation of ↵Bruno Daniel2015-05-102-33/+170
| | | | Google and numpy style parameter documentation
* documentationBruno Daniel2015-05-081-0/+2
|
* check_docs: Emit error messages only when it detects that at least one ↵Bruno Daniel2015-05-081-1/+10
| | | | :param: definition is found? In that case, we will actually know that the user intended to use Sphinx style documentation or not.
* Tolerate no Sphinx parameter documentation at all: unit testBruno Daniel2015-05-083-0/+418