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