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?
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…