如果我在终端上运行flake8
,它会为我提供每个错误的字母数字错误代码-例如未使用的导入的F401:
$ flake8 ~/test.py
/Users/markamery/test.py:1:1: F401 'math' imported but unused
但是,当我使用SublimeLinter-flake8整理Sublime中的代码时,状态栏中显示的错误消息中没有包含这些代码:
如何像在终端上一样使错误代码出现在状态托盘中?
答案 0 :(得分:0)
SublimeLinter的设置文件现在包含一个消息模板参数,该参数默认情况下仅显示错误消息,在默认设置文件中记录如下:
// Show the messages for problems at your cursor position.
// - {message} will be replaced by the actual messages.
// - {linter} will be replaced by the linter reporting the error.
// - {type} will be replaced by either warning or error.
// - {code} will be replaced by the error code.
// Set to "" to display nothing
"statusbar.messages_template": "{message}",
要显示错误代码,则需要: