summaryrefslogtreecommitdiff
path: root/tests/test_pragma_parser.py
Commit message (Collapse)AuthorAgeFilesLines
* Allow numbers in checker names. (#3667)Jeremy Fleischman2020-06-081-0/+8
| | | | This fixes https://github.com/PyCQA/pylint/issues/3666.
* Fix a regression where messages with dash are not fully parsedClaudiu Popa2020-05-141-0/+8
| | | | Close #3604
* [tests lint] Fix all W0612 unused-variable in pylint's own testsPierre Sassoulas2020-04-201-16/+6
|
* Add support for disabling line-too-long for multilines stringshippo912019-11-191-0/+94
This commit adds support for disabling `line-too-long` messages for multilines strings such as docstrings. When a pylint disable pragma is present at the end of the docstring, it is taken in account for the entire docstring. Close #2957