Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How do I turn off the “extension recommendations” notification?

Every time I open Visual Studio Code, I get a notification:

This workspace has extension recommendations.

This workspace has extension recommenations.


How do I turn off extension recommendations?

like image 230
Super Jade Avatar asked Aug 26 '19 19:08

Super Jade


People also ask

How do I remove an extension from VS Code?

To uninstall an extension, select the Manage gear button at the right of an extension entry and then choose Uninstall from the dropdown menu. This will uninstall the extension and prompt you to reload VS Code.

Where are VS Code extensions installed?

Most extensions are per-user and are installed in the %LocalAppData%\Microsoft\VisualStudio\<Visual Studio version>\Extensions\ folder.

How do I change JSON default settings?

You can open the settings.json file with the Preferences: Open Settings (JSON) command in the Command Palette (Ctrl+Shift+P). Once the file is open in an editor, delete everything between the two curly braces {} , save the file, and VS Code will go back to using the default values.


1 Answers

In the new update of VS Code.

Recommendations can be disabled in the view

  • Open extension view from the side bar
  • Click on the 3 dots in the right hand corner of the extension view
  • Click on View

Enable or disable recommendations from there.

enter image description here

or if you don't want to see the recommendations at all then disable it in settings file

Open settings.json (Press Ctrl + Shift + P type settings.json)

  • set extensions.showRecommendationsOnlyOnDemand to true
  • set extensions.ignoreRecommendations to true
like image 110
AbhishekGowda28 Avatar answered Oct 26 '22 21:10

AbhishekGowda28