Pydev-pylint 一次性修复所有错误
我正在 pydev (eclipse) 中使用 pylint 插件来检查代码中的静态错误。通常很多地方都会出现相同类型的错误,例如未使用变量i。有没有一种方法可以针对所有此类情况执行一个纠正步骤,而不是转到每个错误位置。在这种情况下,我想一次性将任何此类未使用的变量重命名为虚拟变量。还有其他类似的错误,比如不必要的分号(我也编写了很多c++ :( )和未使用的导入,我想一次性删除它们。
谢谢!
I am using the pylint plugin in pydev (eclipse) to check for static errors in my code. Often there will be same type of errors in many places, for example, unused variable i. Is there a way to execute one corrective step for all such cases instead of going to each error location. In this case I would like to rename any such unused variable as dummy, all at once. There are other similar errors like unnecessary semi-colons (I also code a lot of c++ :( ) and unused imports, which I want to delete all at once.
Thank you!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
不幸的是,PyDev 目前没有这样的快速修复。请将其报告为功能请求。
Unfortunately, there are currently no such quick-fixes in PyDev. Please report that as a feature request.