将VS Code更新为版本1.21.0后,Pylint Linter无效。
我在VS Code的“问题”选项卡中没有收到任何linting错误。
我故意做了一些错误来确认这种行为。
当我发出样式错误时,我希望我的linter能像之前那样通知我。
我的测试中是否有任何可以解决此问题的内容?
这是我应该报告的错误吗?
我的VS代码用户设置:
{
"workbench.startupEditor": "newUntitledFile",
"git.ignoreMissingGitWarning": true,
"workbench.colorTheme": "Monokai",
"[python]": {
},
"python.linting.pylintUseMinimalCheckers": false,
"explorer.sortOrder": "type",
"editor.rulers": [
79
],
"files.trimTrailingWhitespace": true,
"terminal.integrated.shell.windows": "C:\\WINDOWS\\System32\\WindowsPowerShell\\v1.0\\powershell.exe",
}
答案 0 :(得分:2)
根据您收到的错误,您的扩展安装已损坏。请卸载扩展并重新安装,如果失败,请进入extensions目录并删除python扩展文件夹(使用命令选项板中的Open Extensions Folder命令)。
这应该解决问题。