Hi,
I would also like to have more readable warnings summaries from Pylint in our Jenkins setup.
There are two ways to get the message code details from pylint itself:
pylint --list-msgs will list all defined Pylint messages with codes, symbolic names and full-text descriptions in a format that looks like this:
Another way is to query a specific message code, like so:
As the original reporter notes, though, the symbolic names are already present in the output that the Warnings plugins parses. Just using the symbolic name nomember is a big readability improvement over using E1101.
Do you have a link to a file that contains this mapping? Or where can I get this information from?