DEV Community

Mateus V. Farias
Mateus V. Farias

Posted on

Share recommendation Visual Studio Code extensions

When we're working in a team, we would like to use the same set of tools to make the development process more robust and productive.

With Visual Studio Code, it makes sense to use the same set of extensions.

You can share the extensions with other people in your team by creating a file extensions.json located in the .vscode folder.

{
    "recommendations": ["dbaeumer.vscode-eslint", "esbenp.prettier-vscode", "svelte.svelte-vscode"]
}
Enter fullscreen mode Exit fullscreen mode

The recommendations key contains the list of extensions which each of them is defined by an extension identifier.

You can see the list of installed extensions by running the command:

$ code --list-extensions
Enter fullscreen mode Exit fullscreen mode

Example output

dbaeumer.vscode-eslint
rvest.vs-code-prettier-eslint
svelte.svelte-vscode
Enter fullscreen mode Exit fullscreen mode

Follow me on Twitter and GitHub to get more useful contents.

Top comments (0)