Skip to content

Commit 1f94fb0

Browse files
committed
chore: enhance VS Code workspace extensions configuration
- Extend recommended extensions list - Add unwanted recommendations section - Align inline comments for better readability
1 parent 65bf276 commit 1f94fb0

1 file changed

Lines changed: 16 additions & 13 deletions

File tree

.vscode/extensions.json

Lines changed: 16 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,26 @@
11
{
22
"recommendations": [
33
// C# Development
4-
"ms-dotnettools.csdevkit", // C# Dev Kit - Official Microsoft C# tooling
5-
"csharpier.csharpier-vscode", // CSharpier - Opinionated C# code formatter
4+
"ms-dotnettools.csdevkit", // C# Dev Kit - Official Microsoft C# tooling
5+
"csharpier.csharpier-vscode", // CSharpier - Opinionated C# code formatter
66

77
// 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
8+
"ms-azuretools.vscode-containers", // Container Tools - Docker and container management
9+
"github.copilot-chat", // GitHub Copilot Chat - AI coding assistant
1210
"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
11+
"github.vscode-github-actions", // GitHub Actions - CI/CD workflow support
12+
"redhat.vscode-yaml", // YAML - Language support for YAML files
13+
"foxundermoon.shell-format", // Shell Format - Shell script formatter
14+
"codezombiech.gitignore", // Gitignore - .gitignore file support
15+
"sonarsource.sonarlint-vscode", // SonarLint - Code quality and security analysis
16+
"davidanson.vscode-markdownlint", // MarkdownLint - Markdown linting
17+
"ryanluker.vscode-coverage-gutters", // Coverage Gutters - Test coverage visualization
18+
"yy0931.vscode-sqlite3-editor", // SQLite3 Editor - Database viewer
1819
],
20+
1921
"unwantedRecommendations": [
20-
"github.copilot", // Copilot (base) - Unified into copilot-chat
21-
"docker.docker" // Docker DX - Use ms-azuretools.vscode-containers instead
22+
"ms-azuretools.vscode-docker", // Docker (legacy) - Use vscode-containers instead
23+
"docker.docker", // Docker DX - Use ms-azuretools.vscode-containers
24+
"github.copilot" // Copilot (base) - Unified into copilot-chat
2225
]
2326
}

0 commit comments

Comments
 (0)