Я использую Windows 10 на 64-битном ПК. Недавно я начал использовать VS Code с Ubuntu Bash в Windows. Все работает отлично, за исключением листинга. Я попытался заставить его работать с pylint и pep8, но никто из них не работал. Я думаю, что проблема вызвана из-за расположения линта. Однако я не мог понять, как решить проблему. Вы можете проверить мои настройки для pylint:
// Whether to lint Python files using pylint.
"python.linting.pylintEnabled": true,
// Severity of Pylint message type 'Convention/C'.
"python.linting.pylintCategorySeverity.convention": "Information",
// Severity of Pylint message type 'Refactor/R'.
"python.linting.pylintCategorySeverity.refactor": "Hint",
// Severity of Pylint message type 'Warning/W'.
"python.linting.pylintCategorySeverity.warning": "Warning",
// Severity of Pylint message type 'Error/E'.
"python.linting.pylintCategorySeverity.error": "Error",
// Severity of Pylint message type 'Fatal/F'.
"python.linting.pylintCategorySeverity.fatal": "Error",
// Path to Pylint, you can use a custom version of pylint by modifying this
// setting to include the full path.
"python.linting.pylintPath": "pylint",
// Arguments passed in. Each argument is a separate item in the array.
"python.linting.pylintArgs": [],
Буду признателен за любую помощь. Спасибо...