|
1 | 1 | { |
2 | 2 | "recommendations": [ |
3 | | - // Python Development |
| 3 | + // Language & Frameworks |
4 | 4 | "ms-python.python", // Python language support |
5 | | - "ms-python.flake8", // Python linting with flake8 |
| 5 | + |
| 6 | + // AI Assistance |
| 7 | + "github.copilot-chat", // GitHub Copilot Chat - AI-powered coding assistant |
| 8 | + "coderabbit.coderabbit-vscode", // CodeRabbit - AI-powered code review |
| 9 | + |
| 10 | + // Code Quality |
| 11 | + "sonarsource.sonarlint-vscode", // SonarLint - Code quality and security analysis |
| 12 | + |
| 13 | + // Formatting & Linting |
6 | 14 | "ms-python.black-formatter", // Python code formatting |
| 15 | + "ms-python.flake8", // Python linting with flake8 |
| 16 | + "redhat.vscode-xml", // XML Language Support - XML language server |
| 17 | + "redhat.vscode-yaml", // YAML Language Support - YAML language server |
| 18 | + "davidanson.vscode-markdownlint", // MarkdownLint - Markdown linting and style checking |
| 19 | + "foxundermoon.shell-format", // Shell Format - Shell script formatter |
| 20 | + |
| 21 | + // Version Control & Collaboration |
| 22 | + "github.vscode-pull-request-github", // GitHub Pull Requests - Manage pull requests and issues |
| 23 | + "github.vscode-github-actions", // GitHub Actions - Manage CI/CD workflows |
| 24 | + "github.remotehub", // Remote Repositories - Browse and edit GitHub repos remotely |
| 25 | + "ms-vscode.remote-repositories", // Remote Repositories - Remote repository infrastructure |
| 26 | + "ms-vscode.azure-repos", // Azure Repos - Azure DevOps repository support |
| 27 | + "codezombiech.gitignore", // gitignore - Generate .gitignore files |
7 | 28 |
|
8 | | - // Infrastructure & Workflow |
| 29 | + // Containers & Configuration |
9 | 30 | "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 | | - ], |
| 31 | + "yy0931.vscode-sqlite3-editor", // SQLite3 Editor - View and edit SQLite databases |
21 | 32 |
|
| 33 | + // UI Enhancements |
| 34 | + "github.github-vscode-theme", // GitHub Theme - GitHub color themes |
| 35 | + "pkief.material-icon-theme", // Material Icon Theme - Material Design file icons |
| 36 | + "oderwat.indent-rainbow", // Indent Rainbow - Colorize indentation levels |
| 37 | + "mechatroner.rainbow-csv", // Rainbow CSV - Colorize CSV and TSV files |
| 38 | + "bierner.markdown-emoji", // Markdown Emoji - Emoji support in Markdown |
| 39 | + "bierner.markdown-mermaid", // Markdown Mermaid - Mermaid diagram support in Markdown |
| 40 | + "bierner.markdown-preview-github-styles" // Markdown Preview GitHub Styling - GitHub-style Markdown preview |
| 41 | + ], |
| 42 | + // Prevent conflicting, deprecated, or alternative extensions from being recommended |
22 | 43 | "unwantedRecommendations": [ |
23 | 44 | "ms-azuretools.vscode-docker", // Docker (legacy) - Use vscode-containers instead |
24 | 45 | "docker.docker", // Docker DX - Use ms-azuretools.vscode-containers |
|
0 commit comments