关于vscode

来源:互联网 发布:hr管理软件知乎 编辑:程序博客网 时间:2024/05/22 07:44
  1. pylint检查会导致很多波浪线,无法忍受,可按如下方式禁止。
    https://github.com/DonJayamanne/pythonVSCode/issues/570

Found another way - Go to File > Preferences > Settings. Add the following to your user settings -
{
“python.linting.pylintArgs”: [“–errors-only”]
}
For some reason, my pylint stopped working as soon as I generated .pylintrc, so I had
to opt for another solution.