Disabling specific pep8 checks?
I love that PyCharm 2.7 has builtin pep8, but my code is built for a slightly customised set of checks (we disable some specific PEP8 errors).
I can see how to turn off pep8 completely in settings->inspections->python, but is it possible to silence particular pep8 conditions? (I want to silence E501 and E251, fwiw)
Thanks
I can see how to turn off pep8 completely in settings->inspections->python, but is it possible to silence particular pep8 conditions? (I want to silence E501 and E251, fwiw)
Thanks
2 条评论
排序方式
日期
投票数
Put the caret on a warning you'd like to silence, press Alt-Enter and select the "Ignore errors like this" option.
thanks
请先登录再写评论。