Skip to content

Commit 1ebbb01

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 b5f2cd5 commit 1ebbb01

1 file changed

Lines changed: 21 additions & 10 deletions

File tree

.vscode/extensions.json

Lines changed: 21 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,25 @@
11
{
22
"recommendations": [
3-
"golang.go",
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+
// Go Development
4+
"golang.go", // Go - Official Go language support and tooling
5+
6+
// Infrastructure & Workflow
7+
"ms-azuretools.vscode-containers", // Container Tools - Docker and container management
8+
"github.copilot-chat", // GitHub Copilot Chat - AI coding assistant
9+
"github.vscode-pull-request-github", // GitHub Pull Requests and Issues - PR management
10+
"github.vscode-github-actions", // GitHub Actions - CI/CD workflow support
11+
"redhat.vscode-yaml", // YAML - Language support for YAML files
12+
"foxundermoon.shell-format", // Shell Format - Shell script formatter
13+
"codezombiech.gitignore", // Gitignore - .gitignore file support
14+
"sonarsource.sonarlint-vscode", // SonarLint - Code quality and security analysis
15+
"davidanson.vscode-markdownlint", // MarkdownLint - Markdown linting
16+
"ryanluker.vscode-coverage-gutters", // Coverage Gutters - Test coverage visualization
17+
"yy0931.vscode-sqlite3-editor", // SQLite3 Editor - Database viewer
18+
],
19+
20+
"unwantedRecommendations": [
21+
"ms-azuretools.vscode-docker", // Docker (legacy) - Use vscode-containers instead
22+
"docker.docker", // Docker DX - Use ms-azuretools.vscode-containers
23+
"github.copilot" // Copilot (base) - Unified into copilot-chat
1324
]
1425
}

0 commit comments

Comments
 (0)