formulahendry / vscode-code-runner

Code Runner for Visual Studio Code
https://marketplace.visualstudio.com/items?itemName=formulahendry.code-runner
MIT License
2.19k stars 292 forks source link

Is it possible to introduce zero-dependency version? #1005

Open ttodua opened 1 year ago

ttodua commented 1 year ago

Because of increased chain attack, we are avoiding to use this extension on dev-machine, because this package has 3 dependencies (applicationinsights is heaviest among them), and after looking through them, I wanted to ask, if there is any way to avoid them?

bautista-frmb commented 1 year ago

you can change it in the settings. search for code-runner.enableAppInsights. or you can directly edit the settings.json by adding this line code-runner.enableAppInsights = false

ttodua commented 1 year ago

"disabling" is just actually just an act/option after installing all those deps. my point was to avoid installing them at all. I think we will fork it and remove them in our fork, and our team will use that other version.