summaryrefslogtreecommitdiff
path: root/pylint/exceptions.py
Commit message (Collapse)AuthorAgeFilesLines
* Rename copying to license and upgrade the setup.cfg (#4338)Pierre Sassoulas2021-04-111-1/+1
|
* Apply copyrite --contribution-thresholdPierre Sassoulas2021-02-211-0/+2
|
* Remove the # coding, since PEP3120 the default is UTF8Pierre Sassoulas2021-02-211-1/+0
|
* Sets up copyrighthippo912020-08-201-1/+1
|
* Add missing copyright annotations for the past releasesClaudiu Popa2020-04-271-2/+5
|
* pyupgrade: automated removal of python2 constructsAnthony Sottile2020-03-241-1/+0
| | | | | | | | | | | | | 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 reading from stdin (#2746)Thomas Hisch2019-03-021-0/+4
| | | | | pylint gained a new `--from-stdin` flag which activates stdin linting, useful for editors and similar use cases. Closes: #1187
* Reformat the code with blackClaudiu Popa2018-09-171-0/+3
|
* Update copyright noticesClaudiu Popa2018-07-151-1/+2
|
* Spelling fixesVille Skyttä2018-01-301-1/+1
|
* Regenerate copyright noticesClaudiu Popa2017-12-151-0/+3
|
* Raise meaningful exception for invalid reporter class being selected (#1450)Łukasz Rogalski2017-04-281-0/+3
|
* Even more granular copyrights (thanks to copyrite)Claudiu Popa2016-07-231-1/+1
|
* Add copyright stringGlenn Matthews2016-07-191-0/+1
|
* Rename UnknownMessage, EmptyReport to UnknownMessageError, EmptyReportErrorGlenn Matthews2016-07-191-2/+2
|
* Move EmptyReport and UnknownMessage to pylint.exceptionsGlenn Matthews2016-07-191-0/+6
|
* Better input validation in register_messages to avoid overwrites.Glenn Matthews2016-07-191-0/+8
Add InvalidMessageError and use it instead of asserts in pylint.utils.