PyLint 1.0.0 with PyDev + Eclipse: “include-ids” option no longer allowed, breaks Eclipse integration

不想你离开。 提交于 2019-12-03 14:09:24

This should be already fixed in the latest nightly build. Please grab it there.

See: http://pydev.org/download.html for details on how to get it.

To make ID's appear in the Problem View on Eclispe using PyDev, make sure you use

msg-template={msg_id}:{line:3d},{column}: {obj}: {msg}

in pylintrc or on the command line options. Eclipse needs this to parse the PyLint output.

Sébastien Charlois

The following option works with pylint v1.4.3 under pydev v3.9.2:

--msg-template="{msg_id}:{line:3d},{column:2d}:{msg}"

Note: Don't put space(s) after the semicolons otherwise it does not work.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!