我最近切换到 Visual Studio Code,我不得不说到目前为止我很喜欢它。
我正在开发一个 Python 项目,其中包括 pip 包pylint
,autopep8
并且我配置了 VSCode 以根据这些包格式化代码。
唯一的问题是:在 Python 项目中,我正在处理的行长度是 100。所以我的所有代码都如下所示:
错误说:E501:line too long (97 > 79 characters)
。这是我的 VSCode 设置:
{
"python.pythonPath": "~/.envs/myProject/bin/python",
"python.linting.pep8Enabled": true,
"python.linting.pylintPath": "~/.envs/myProject/bin/pylint",
"python.linting.pylintArgs": ["--load-plugins", "pylint_django", "--max-line-length=100"],
"python.formatting.autopep8Args": ["--max-line-length=100"],
"python.linting.pylintEnabled": true,
"files.exclude": {
"**/.git": true,
"**/.svn": true,
"**/.hg": true,
"**/CVS": true,
"**/.DS_Store": true,
".vscode": true,
"**/*.pyc": true
}
}
这些设置至少现在可以确保保存时的格式将行保持在最大 100 行,并且不会将我所有的文件行包装到 79 行。如果没有警告,它仍然会很棒。
如何禁用这些 linter 警告?