sublime text的pylinter插件设置pylint_rc后提示错误

sublime text插件pylinter提示错误

Fatal pylint error

Warning: option include-ids is deprecated and ignored.

错误本身是Python的错误,这说明不是插件的问题,就是配置文件的问题。

pylinter的设置如下:

    "pylint_rc": "C:/pylint-1.4.4/pylint/pylintrc",
    //"pylint_rc": null,

经过一番查找定位,发现确实是配置文件出现的问题,打开配置文件pylintrc,查找symbols=no,将其注释掉就可以了。在配置文件也写明,已经弃用了。

# Deprecated. It was used to include symbolic ids of messages in output. Use

# --msg-template instead.
#symbols=no

更多请参考Sublime text设置

posted @ 2017-10-22 15:51  枫竹梦  阅读(191)  评论(0编辑  收藏  举报