I'm trying to use visual studio code to write some python as I can't handle the memory requirements of pycharm. I'm also working around a corporate proxy, so I've installed cntlm locally to get around this so all requests need to go to 127.0.0.1
I started visual studio code using;
<yada yada>\Microsoft VS Code\Code.exe" --proxy-server=http=127.0.0.1:3128
so far so good. It they suggests that I'm lacking the pylint module and fails to install it because it's using the wrong proxy;
(venv) <yada yada>PycharmProjects/Rosaline/venv/Scripts/python.exe -m pip --proxy <corporateproxy>:80 install -U pylint
So my first question is why doesn't vsc tell pip to use the right proxy and the second question is why is it installing a linter on a per project basis?