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

c++ - Do gcc's __float128 floating point numbers take the current rounding mode into account? -

java - the value of local variable is not used -