python - Get error code for disabling in pylint from error message -


if have main.py file , command line run pylint main.py

pylint throws errors/status/etc wrong hanging indentation. 'name': | ^ (bad-continuation)

how find out error code of (bad-continuation) can disable it?

i know can run pylint main.py -d e1101 -d f0401

so want either master list of pylint error codes mapped messages or way messages.

thanks

do mean this? pylint codes

for how have pylint directly print out relevant codes, see this answer.


Comments

Popular posts from this blog

ruby - How do I merge two hashes into a hash of arrays? -

java - the value of local variable is not used -