Pylinter
Pylinter copied to clipboard
When adding pylint disable, use symbolic name instead of code
On adding a pylint disable with the (keyboard) shortcut, it'd be useful if instead of the code the symbolic name was used. For example,
a = 1 #pylint: disable=C0103
b = 2 #pylint: disable=invalid-name
The second one is much more readable. This matters when there are a number of things going on in a line; in this case I'd want to know what warning was disabled.