VS Code workspace recommended extensions
sharing extension recommendations in workspace
Photo by Barn Images on Unsplash
Visual Studio Code has support for specifying extension recommendations as part of you workspace. Developers can then see these in the extensions tab and decide what to install.
Here is how to set it up
This creates a file named extensions.json
under .vscode
in your workspace root which looks something like this.
{
"recommendations": ["editorconfig.editorconfig"]
}