DEV Community

Mateus V. Farias
Mateus V. Farias

Posted on

1

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.

Sentry image

Hands-on debugging session: instrument, monitor, and fix

Join Lazar for a hands-on session where you’ll build it, break it, debug it, and fix it. You’ll set up Sentry, track errors, use Session Replay and Tracing, and leverage some good ol’ AI to find and fix issues fast.

RSVP here →

Top comments (0)

Eliminate Context Switching and Maximize Productivity

Pieces.app

Pieces Copilot is your personalized workflow assistant, working alongside your favorite apps. Ask questions about entire repositories, generate contextualized code, save and reuse useful snippets, and streamline your development process.

Learn more

👋 Kindness is contagious

Please leave a ❤️ or a friendly comment on this post if you found it helpful!

Okay