Skip to content

Commit 7b43a7a

Browse files
committed
chore: optimize workspace extension recommendations

- Organize extensions into logical groups with inline documentation - Add unwanted recommendations for deprecated alternatives - Curate 12 essential extensions (2 C# dev, 10 infrastructure/workflow)
1 parent 1ffee5b commit 7b43a7a

File tree

1 file changed

+20
-10
lines changed

1 file changed

+20
-10
lines changed

.vscode/extensions.json

Lines changed: 20 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,24 @@
11
{
22
"recommendations": [
3-
"ms-dotnettools.csdevkit",
4-
"codezombiech.gitignore",
5-
"conventionalcommits.extension",
6-
"foxundermoon.shell-format",
7-
"github.vscode-github-actions",
8-
"github.vscode-pull-request-github",
9-
"ms-azuretools.vscode-containers",
10-
"redhat.vscode-yaml",
11-
"sonarsource.sonarlint-vscode",
12-
"yy0931.vscode-sqlite3-editor"
3+
// C# Development
4+
"ms-dotnettools.csdevkit", // C# Dev Kit - Official Microsoft C# tooling
5+
"csharpier.csharpier-vscode", // CSharpier - Opinionated C# code formatter
6+
7+
// Infrastructure & Workflow
8+
"ms-azuretools.vscode-docker", // Docker - Container management and debugging
9+
"yy0931.vscode-sqlite3-editor", // SQLite3 Editor - Database viewer
10+
"sonarsource.sonarlint-vscode", // SonarLint - Code quality and security analysis
11+
"github.copilot-chat", // GitHub Copilot Chat - AI coding assistant
12+
"github.vscode-pull-request-github", // GitHub Pull Requests and Issues - PR management
13+
"github.vscode-github-actions", // GitHub Actions - CI/CD workflow support
14+
"redhat.vscode-yaml", // YAML - Language support for YAML files
15+
"foxundermoon.shell-format", // Shell Format - Shell script formatter
16+
"davidanson.vscode-markdownlint", // MarkdownLint - Markdown linting
17+
"codezombiech.gitignore" // Gitignore - .gitignore file support
18+
],
19+
"unwantedRecommendations": [
20+
"ms-azuretools.vscode-containers", // Container Tools - Deprecated, use vscode-docker
21+
"github.copilot", // Copilot (base) - Unified into copilot-chat
22+
"docker.docker" // Docker DX - Use official ms-azuretools.vscode-docker
1323
]
1424
}

0 commit comments

Comments
 (0)