|
1 | 1 | { |
2 | 2 | "recommendations": [ |
3 | | - "ms-python.python", |
4 | | - "ms-python.flake8", |
5 | | - "ms-python.black-formatter", |
6 | | - "github.vscode-pull-request-github", |
7 | | - "github.vscode-github-actions", |
8 | | - "ms-azuretools.vscode-containers", |
9 | | - "redhat.vscode-yaml", |
10 | | - "sonarsource.sonarlint-vscode", |
11 | | - "esbenp.prettier-vscode", |
12 | | - "conventionalcommits.extension", |
13 | | - "codezombiech.gitignore" |
| 3 | + // Python Development |
| 4 | + "ms-python.python", // Python language support |
| 5 | + "ms-python.flake8", // Python linting with flake8 |
| 6 | + "ms-python.black-formatter", // Python code formatting |
| 7 | + |
| 8 | + // Infrastructure & Workflow |
| 9 | + "ms-azuretools.vscode-containers", // Container Tools - Docker and container management |
| 10 | + "github.copilot-chat", // GitHub Copilot Chat - AI coding assistant |
| 11 | + "github.vscode-pull-request-github", // GitHub Pull Requests and Issues - PR management |
| 12 | + "github.vscode-github-actions", // GitHub Actions - CI/CD workflow support |
| 13 | + "redhat.vscode-yaml", // YAML - Language support for YAML files |
| 14 | + "foxundermoon.shell-format", // Shell Format - Shell script formatter |
| 15 | + "codezombiech.gitignore", // Gitignore - .gitignore file support |
| 16 | + "sonarsource.sonarlint-vscode", // SonarLint - Code quality and security analysis |
| 17 | + "davidanson.vscode-markdownlint", // MarkdownLint - Markdown linting |
| 18 | + "ryanluker.vscode-coverage-gutters", // Coverage Gutters - Test coverage visualization |
| 19 | + "yy0931.vscode-sqlite3-editor", // SQLite3 Editor - Database viewer |
| 20 | + ], |
| 21 | + |
| 22 | + "unwantedRecommendations": [ |
| 23 | + "ms-azuretools.vscode-docker", // Docker (legacy) - Use vscode-containers instead |
| 24 | + "docker.docker", // Docker DX - Use ms-azuretools.vscode-containers |
| 25 | + "github.copilot" // Copilot (base) - Unified into copilot-chat |
14 | 26 | ] |
15 | 27 | } |
0 commit comments