-
Notifications
You must be signed in to change notification settings - Fork 23
Expand file tree
/
Copy pathextensions.json
More file actions
27 lines (25 loc) · 1.5 KB
/
extensions.json
File metadata and controls
27 lines (25 loc) · 1.5 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
{
"recommendations": [
// Python Development
"ms-python.python", // Python language support
"ms-python.flake8", // Python linting with flake8
"ms-python.black-formatter", // Python code formatting
// Infrastructure & Workflow
"ms-azuretools.vscode-containers", // Container Tools - Docker and container management
"github.copilot-chat", // GitHub Copilot Chat - AI coding assistant
"github.vscode-pull-request-github", // GitHub Pull Requests and Issues - PR management
"github.vscode-github-actions", // GitHub Actions - CI/CD workflow support
"redhat.vscode-yaml", // YAML - Language support for YAML files
"foxundermoon.shell-format", // Shell Format - Shell script formatter
"codezombiech.gitignore", // Gitignore - .gitignore file support
"sonarsource.sonarlint-vscode", // SonarLint - Code quality and security analysis
"davidanson.vscode-markdownlint", // MarkdownLint - Markdown linting
"ryanluker.vscode-coverage-gutters", // Coverage Gutters - Test coverage visualization
"yy0931.vscode-sqlite3-editor", // SQLite3 Editor - Database viewer
],
"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
]
}