Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Remove the ``check_docs`` extension and remove any references to it (#5730) | Daniël van Noord | 2022-01-27 | 1 | -25/+0 |
| | |||||
* | Add typing and uniformize the checker registering in Pylinter (#5558) | Pierre Sassoulas | 2021-12-27 | 1 | -5/+4 |
| | | | | | Remove verbose docstring in code, keep them in example and doc Co-authored-by: Marc Mueller <30130371+cdce8p@users.noreply.github.com> | ||||
* | Bump pylint to 2.9.4, update changelogv2.9.4 | Pierre Sassoulas | 2021-07-20 | 1 | -1/+1 |
| | |||||
* | Bump pylint to 2.9.3, update changelogv2.9.3 | Pierre Sassoulas | 2021-07-01 | 1 | -0/+1 |
| | |||||
* | Fix copyright links (#4647) | Marc Mueller | 2021-07-01 | 1 | -1/+1 |
| | | | | * Fix link in license header * Update link to astroid bump_changelog | ||||
* | Rename copying to license and upgrade the setup.cfg (#4338) | Pierre Sassoulas | 2021-04-11 | 1 | -1/+1 |
| | |||||
* | Update copyright notice with copyrite | Pierre Sassoulas | 2021-02-28 | 1 | -0/+1 |
| | |||||
* | Apply copyrite --contribution-threshold | Pierre Sassoulas | 2021-02-21 | 1 | -0/+1 |
| | |||||
* | Sets up copyright | hippo91 | 2020-08-20 | 1 | -1/+1 |
| | |||||
* | Add missing copyright annotations for the past releases | Claudiu Popa | 2020-04-27 | 1 | -1/+1 |
| | |||||
* | Reformat the code with black | Claudiu Popa | 2018-09-17 | 1 | -2/+4 |
| | |||||
* | Even more granular copyrights (thanks to copyrite) | Claudiu Popa | 2016-07-23 | 1 | -2/+4 |
| | |||||
* | Keep a consistent copyright notice across the board. | Claudiu Popa | 2016-07-19 | 1 | -0/+2 |
| | | | | | This was changed automatically in #894, but apparently we need to have the copyright notice somewhere. | ||||
* | Remove trailing line. | Claudiu Popa | 2016-07-07 | 1 | -1/+0 |
| | |||||
* | Add a check_docs file, that registers into docparams, for maintaining ↵ | Claudiu Popa | 2016-07-07 | 1 | -0/+18 |
| | | | | backward compatibility. | ||||
* | Move the docstring param checker to docparams.py. | Claudiu Popa | 2016-06-30 | 1 | -295/+0 |
| | |||||
* | Rename the docstring parameter checker to something that suggest more ↵ | Claudiu Popa | 2016-06-30 | 1 | -3/+3 |
| | | | | clearly what it does. | ||||
* | Fixed our docstring lint errors | Ashley Whetter | 2016-06-25 | 1 | -0/+1 |
| | |||||
* | check_docs warns for redundant return docstring (#929) | Ashley Whetter | 2016-06-05 | 1 | -3/+17 |
| | | | Fixes #734 | ||||
* | Add the new shorter license header, including to missing files. Close #894. | Claudiu Popa | 2016-06-01 | 1 | -0/+3 |
| | |||||
* | Check docs improvements (#918) | Ashley Whetter | 2016-05-30 | 1 | -2/+2 |
| | | | | | | Fixed linting docstring when function has args or kwargs and fixed missing-param-doc with leading asterisks in Google docstring Leading asterisks are allowed on the name of args and kwargs in a Google docstring but we weren't checking for these. | ||||
* | Added return docstring checking to check_docs (#914) | Ashley Whetter | 2016-05-25 | 1 | -1/+28 |
| | | | | Added return docstring checking to check_docs | ||||
* | Added a new extension for checking documented exceptions raised (#904) | Ashley Whetter | 2016-05-20 | 1 | -175/+77 |
| | | | | | Add check_raises_docs Closes #904 | ||||
* | [ADD] check_docs can find constructor parameters in __init__ (#887) | Ashley Whetter | 2016-04-30 | 1 | -7/+44 |
| | | | | Also added warning W9005 to indicate when constructor parameters are documented in both the class docstring and __init__ docstring. | ||||
* | Take in account kwonlyargs when verifying that arguments are defined | Claudiu Popa | 2016-01-09 | 1 | -1/+1 |
| | | | | Closes #745 | ||||
* | Use the new node names for the visit and leave methods | Claudiu Popa | 2015-08-26 | 1 | -1/+1 |
| | | | | | Also, emit a PendingDeprecationWarning if the old names are still used, this support being removed in pylint 2.0. | ||||
* | Cleanup. | Claudiu Popa | 2015-05-11 | 1 | -35/+27 |
| | |||||
* | Change the name of the parameter checker, so that it can be chosen easily at ↵ | Claudiu Popa | 2015-05-10 | 1 | -1/+1 |
| | | | | command line. | ||||
* | method visit_class is no longer necessary in the checker; auxiliary method ↵ | Bruno Daniel | 2015-05-10 | 1 | -11/+0 |
| | | | | _visit_methods_of_class in the unit test | ||||
* | check_docs: Handle class constructors from within visit_function. | Bruno Daniel | 2015-05-10 | 1 | -10/+17 |
| | |||||
* | accept-no-param-doc turned into a yes/no option; documentation for this ↵ | Bruno Daniel | 2015-05-10 | 1 | -2/+1 |
| | | | | parameter | ||||
* | check_docs: implementation of option "accept-no-param-doc" | Bruno Daniel | 2015-05-10 | 1 | -2/+10 |
| | |||||
* | better naming, because the checker now supports not just the Sphinx style | Bruno Daniel | 2015-05-10 | 1 | -22/+21 |
| | |||||
* | unittest for Google style parameter documentation; first implementation of ↵ | Bruno Daniel | 2015-05-10 | 1 | -28/+130 |
| | | | | Google and numpy style parameter documentation | ||||
* | check_docs: Emit error messages only when it detects that at least one ↵ | Bruno Daniel | 2015-05-08 | 1 | -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 test | Bruno Daniel | 2015-05-08 | 1 | -0/+206 |