Visual Studio Code, pylint complaining about “Unable to import XXX”
I am using Visual Studio Code to work on a large python project with many modules. My settings.json looks like this: { "python.linting.pylintEnabled": true, "python.linting.enabled": true, "python.autoComplete.extraPaths": [ "C:/Users/.../repos/platform", ], "python.linting.pylintPath": "pylint" } After that inside the code. I am getting a ton of error on all import modules which are inside the platform-folder. I have python3 installed with python extensions and pylint installed as well. I have searched for over an another and tried many different suggestions but none has worked for me so far.