summaryrefslogtreecommitdiff
path: root/pylint/utils/pragma_parser.py
Commit message (Collapse)AuthorAgeFilesLines
* Allow numbers in checker names. (#3667)Jeremy Fleischman2020-06-081-1/+1
| | | | This fixes https://github.com/PyCQA/pylint/issues/3666.
* Fix a regression where messages with dash are not fully parsedClaudiu Popa2020-05-141-2/+2
| | | | Close #3604
* pyupgrade: automated removal of python2 constructsAnthony Sottile2020-03-241-3/+1
| | | | | | | | | | | | | using configuration: ```yaml - repo: https://github.com/asottile/pyupgrade rev: v2.1.0 hooks: - id: pyupgrade args: [--py3-plus, --keep-percent-format] exclude: ^tests/(extensions/data/|functional/|input/|regrtest_data/) ```
* Add support for disabling line-too-long for multilines stringshippo912019-11-191-0/+134
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