List of pylint human readable message ids? [closed

2019-01-14 19:55发布

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?

标签: python pylint
2条回答
不美不萌又怎样
2楼-- · 2019-01-14 20:35

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.

查看更多
一纸荒年 Trace。
3楼-- · 2019-01-14 20:48

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

查看更多
登录 后发表回答