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"]
}
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
Example output
dbaeumer.vscode-eslint
rvest.vs-code-prettier-eslint
svelte.svelte-vscode
Follow me on Twitter and GitHub to get more useful contents.
Top comments (0)