Skip to content

Instantly share code, notes, and snippets.

@leandroluk
Created August 13, 2025 16:13
Show Gist options
  • Save leandroluk/6ae66b11f9d0ecd81ab8e500add943b7 to your computer and use it in GitHub Desktop.
Save leandroluk/6ae66b11f9d0ecd81ab8e500add943b7 to your computer and use it in GitHub Desktop.
.vscode/extensions.json
{
"recommendations": [
// A Vite-native testing framework. It's fast!
"vitest.explorer",
// Icons for Visual Studio Code
"vscode-icons-team.vscode-icons",
// Integrates ESLint JavaScript into VS Code.
"dbaeumer.vscode-eslint",
// Supercharge Git within VS Code — Visualize code authorship at a glance via Git blame annotations and CodeLens,
// seamlessly navigate and explore Git repositories, gain valuable insights via rich visualizations and powerful
// comparison commands, and so much more
"eamodio.gitlens",
// Makes it easy to create, manage, and debug containerized applications.
"ms-azuretools.vscode-docker",
// Intelligent Tailwind CSS tooling for VS Code
"bradlc.vscode-tailwindcss",
// Adds Mermaid diagram and flowchart support to VS Code's builtin markdown preview
"bierner.markdown-mermaid",
// All you need to write Markdown (keyboard shortcuts, table of contents, auto preview and more)
"yzhang.markdown-all-in-one",
// Improve your code commenting by annotating with alert, informational, TODOs, and more!
"aaron-bond.better-comments",
// Language support for MDX
"unifiedjs.vscode-mdx",
// Barreler for typescript apps
"mikerhyssmith.ts-barrelr",
// Markdown syntax support for the Mermaid charting language
"bpruitt-goddard.mermaid-markdown-syntax-highlighting",
// fill-labs.dependi
"fill-labs.dependi"
],
"unwantedRecommendations": [
// Code formatter using prettier
"esbenp.prettier-vscode", // ! use "dbaeumer.vscode-eslint"
"firsttris.vscode-jest-runner" // ! use "vitest.explorer"
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment