我在sublime文本编辑器中使用Python。我添加了PEP8 packages。
我将128添加到以下文件"pep8_ignore"
中。添加128
并保存。
偏好设置 - >包装设置 - > SublimePythonIDE - >设置用户
{
"pep8_ignore": [128],
"pep8_max_line_length": 100,
}
然后在不显示任何 PEP8语法错误/警告 之后。我做错了什么?
如何只忽略 128 - E128: continuation line under-indented for visual indent
警告?