【发布时间】:2018-07-06 18:54:02
【问题描述】:
我在默认的 Flake8Lint.sublime-settings 中设置了要忽略的特定错误(“D”、“E123”、“E126”):
{
"python_interpreter": "auto",
"builtins": [],
"pyflakes": true,
"pep8": true,
"pydocstyle": true,
"naming": true,
"import-order": true,
"import-order-style": "google",
"complexity": -1,
"pep8_max_line_length": 79,
"select": [],
"ignore": ["D", "E123", "E126"],
"ignore_files": []
}
但仍会检测到并显示这些错误。有谁知道如何修理它?谢谢!
【问题讨论】:
标签: python sublimetext3 lint flake8