Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

List of pylint human readable message ids?

Tags:

python

pylint

Recent versions of pylint allow for suppressing messages with human readable message ids. For example, instead of

class MyTest(unittest.TestCase):  # pylint: disable=R0904     ... 

you can specify:

class MyTest(unittest.TestCase):  # pylint: disable=too-many-public-methods     ... 

This page lists the numeric message ids. However, I'm looking for a complete list of the human readable versions of the message ids. Where can I find that list?

like image 771
Frank Niessink Avatar asked Dec 19 '12 15:12

Frank Niessink


2 Answers

I don't think there exists (yet) such list on the web, though pylint --list-msgs automatically produces one.

like image 188
sthenault Avatar answered Sep 20 '22 07:09

sthenault


I've stumbled upon your question, searching for such a list myself. So I decided to process pylint --list-msgs through regex. Then I created such a list. You can access it here.

like image 38
bowl Avatar answered Sep 23 '22 07:09

bowl