Установил visual code studio. Установил расширение для python. Установил пакеты pip3 install -U --user pylint pep8 flake8
Но подсветка ошибок не работает. Хотя в Pycharm все отображается. В чем проблема?
Файл Settings
{
"editor.fontSize": 15,
"editor.cursorBlinking": "phase",
"editor.renderWhitespace": "boundary",
"window.openFilesInNewWindow": "on",
"editor.fontFamily": "Liberation Mono",
"editor.fontWeight": "normal",
"editor.lineHeight": 0,
"files.autoSave": "afterDelay",
"editor.tabCompletion": true,
"python.pythonPath": "!/usr/local/bin/python3.5",
"python.formatting.formatOnSave": true,
"code-runner.executorMap": {
"python": "python3"
},
"workbench.colorTheme": "Darcula",
"python.linting.enabled": true,
"python.linting.lintOnSave": false,
"python.linting.pylintEnabled": true,
"python.linting.pylintPath": "/usr/local/bin/pylint",
"python.linting.pylintArgs": ["--errors-only"]
}