Skip to content

Commit 44d1775

Browse files
authored
Merge pull request #326 from nanotaboada/feature/optimize-vscode-extensions
chore: optimize workspace extension recommendations
2 parents 1ffee5b + f0119b3 commit 44d1775

File tree

1 file changed

+19
-10
lines changed

1 file changed

+19
-10
lines changed

.vscode/extensions.json

Lines changed: 19 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,23 @@
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-containers", // Container Tools - Docker and container management
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+
"github.copilot", // Copilot (base) - Unified into copilot-chat
21+
"docker.docker" // Docker DX - Use ms-azuretools.vscode-containers instead
1322
]
1423
}

0 commit comments

Comments
 (0)