我的pylinter设置是:
{
// When versbose is 'true', various messages will be written to the console.
// values: true or false
// "verbose": false,
// The full path to the Python executable you want to
// run Pylint with or simply use 'python'.
"python_bin": "somewhere/bin/python",
// Optionally set the working directory
// "working_dir": null,
// Full path to the lint.py module in the pylint package
"pylint_path": "somewhere/lib/python2.7/site-packages/pylint/lint.py",
// Optional full path to a Pylint configuration file
// "pylint_rc": null,
// Set to true to automtically run Pylint on save
"run_on_save": true,
// Set to true to use graphical error icons
"use_icons": true,
"disable_outline": false,
"message_stay": true,
}但是,当我保存python脚本时,什么也没有发生。
发布于 2016-04-16 22:26:11
你试过使用快捷键吗?
OS X: Command+Alt+z
Linux,Windows: Control+Alt+z
https://stackoverflow.com/questions/29554750
复制相似问题