让 Eclipse 识别 Pylint“pylint.rc”文件
我试图让 Eclipse 识别我在 Jenkins 中使用的 PyLint 配置文件。目前,Eclipse pylint 充斥着无用的错误。我尝试过传入 rcfile 参数。所以...
Windows >偏好> PyDev > PyLint
然后在“传递给 pylint 的参数”中我有 --rcfile=absolute_path_to_pylint.rc
这没有效果。
我读过,如果您将配置文件放在主目录中,或者设置环境变量,则 pylint 将起作用(请参阅:Pylint 中的永久配置文件),但这两种解决方案都有点笨拙。
有什么想法吗?
I'm trying to get Eclipse to recognise the PyLint configuration file that I use in Jenkins. At the moment Eclipse pylint swamps me with useless errors. I've tried passing in the rcfile parameter. So...
Windows > preferences > PyDev > PyLint
Then in "arguments to pass to pylint" I have
--rcfile=absolute_path_to_pylint.rc
This has no effect.
I've read that pylint will work if you drop a config file in your home directory, or set an Environmental variable (See: Permanent Config File in Pylint) but both these solutions are a little unwieldy.
Any ideas?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
IMO 你的设置应该有效。仔细检查路径中没有拼写错误,并且 rcfile 中没有语法错误阻止 pylint 加载它(这可能与 pydev 和 jenkins 中使用的不同 pylint 版本有关)。
如果这仍然不起作用,我认为您应该将讨论带到 pydev 邮件列表。
Your setup should work IMO. Double check that you don't have a typo in the path and that there is no syntax error in the rcfile preventing pylint from loading it (this could be related to a different pylint version being used in pydev and jenkins for instance).
If this still does not work, I think you should take the discussion to the pydev mailing list.