Skip to content

Commit 6d43425

Browse files
authored
Merge pull request #464 from nanotaboada/chore/reorganize-extensions-recommendations
chore: reorganize and enhance workspace extensions
2 parents a120d4f + 60eee5d commit 6d43425

File tree

1 file changed

+35
-14
lines changed

1 file changed

+35
-14
lines changed

.vscode/extensions.json

Lines changed: 35 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,45 @@
11
{
22
"recommendations": [
3-
// Python Development
3+
// Language & Frameworks
44
"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
614
"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
728

8-
// Infrastructure & Workflow
29+
// Containers & Configuration
930
"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
2132

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
2243
"unwantedRecommendations": [
2344
"ms-azuretools.vscode-docker", // Docker (legacy) - Use vscode-containers instead
2445
"docker.docker", // Docker DX - Use ms-azuretools.vscode-containers

0 commit comments

Comments
 (0)