Disable individual PEP8 style checking (line length)
I really like PyCharm PEP 8 style checking, however I would like to disable line length checking.
Can certain checks be disabled individually? If so, how?
This SO question is equivalent, but has no solution yet: http://stackoverflow.com/questions/22458107/configure-pep8-py-command-line-options-in-pycharm
Karsten
Can certain checks be disabled individually? If so, how?
This SO question is equivalent, but has no solution yet: http://stackoverflow.com/questions/22458107/configure-pep8-py-command-line-options-in-pycharm
Karsten
Please sign in to leave a comment.
Just add E501 to the list of ignore errors and the warning will go away.
Cheers
The error code as of Pycharm 2017.3.4 is E111
Thanks for this. As of PyCharm 2018.1.2 (CE), ignoring E111 doesn't work, but ignoring E501 does.
This is useful: http://pep8.readthedocs.io/en/release-1.7.x/intro.html#error-codes.
/R