Background
I find pylint useful, but I also find it terribly undocumented, has painfully verbose output, and doesn't have an intuitive interface.
I would like to use pylint, but it continues to pump out the absurd amount of meaningless messages of "convention", for example. C: 2: Line too long (137/80) , etc.
Question
If I could disable them, pylint would be much more useful to me. How to disable these "convention" messages?
My own efforts
I tried putting disable-msg=C301 in ~/.pylintrc (which loads because when I put an error there, there is pylint ), which, as I understand it, is the message "The line is too long" based on the execution of this command in the directory pylint package (documentation that can be found will be nice):
$ grep "The string is too long" ** / *. py checkers / format.py: 'C0301': ('The string is too long (% s /% s)',
But this disable-msg does nothing. I would disable the entire convention category with the disable-msg-cat= , but nowhere can I find what will be the convention category identifier for this command - the intuitive disable-message-cat=convention has no effect.
I would be very grateful for some direction on this issue.
Thank.
Brian
python pylint
Brian M. Hunt Jun 26 2018-10-06T00: 00Z
source share