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

sublime text插件pylinter提示错误

sublime text的pylinter插件设置pylint_rc后提示错误_第1张图片

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设置。

你可能感兴趣的:(环境配置,Python3实战)