Hi there community,
I just started Mosh’s course on Python and have installed Pylint en Autopep8. However, I can’t seem to get them to work properly in VS code.
When I make a coding error, the red underlining does appear, but with a Pylance-remark (not Pylint). Autopep8 isn’t working at all.
Could you help me out? This is my settings.json file:
{
“python.linting.pylintEnabled”: true,
“pylint.showNotifications”: “always”,
“python.formatting.autopep8Path”: “autopep8”,
“editor.defaultFormatter”: “ms-python.autopep8”,
“editor.formatOnSave”: true,
“editor.formatOnType”: true,
“editor.formatOnPaste”: true,
Thanks in advance!
Hans