|
| 1 | +// ============================================================ |
| 2 | +// .vscode/extensions.json (Structural Explainability) |
| 3 | +// ============================================================ |
| 4 | +// Updated 2026-04-22 |
| 5 | +// NOTE: Comments are not allowed in standard JSON files, |
| 6 | +// but Microsoft allows them in their .vscode config files. |
| 7 | +{ |
| 8 | + "recommendations": [ |
| 9 | + // ============================================================ |
| 10 | + // === PYTHON DEVELOPMENT === |
| 11 | + // ============================================================ |
| 12 | + "ms-python.python", // Core Python support |
| 13 | + "ms-python.vscode-pylance", // Fast IntelliSense and type checking |
| 14 | + "charliermarsh.ruff", // Modern formatting and linting (replaces black + isort + flake8) |
| 15 | + // ============================================================ |
| 16 | + // === FILE PATH ASSISTANCE === |
| 17 | + // ============================================================ |
| 18 | + "christian-kohler.path-intellisense", // Autocomplete for file paths in Python strings (e.g., "data/file.csv") |
| 19 | + // ============================================================ |
| 20 | + // === MARKDOWN AND DOCUMENTATION === |
| 21 | + // ============================================================ |
| 22 | + "yzhang.markdown-all-in-one", // Shortcuts, TOC, formatting for .md files |
| 23 | + "bierner.markdown-preview-github-styles", // GitHub-style markdown preview |
| 24 | + "esbenp.prettier-vscode", // Used for Markdown formatting |
| 25 | + // "bierner.markdown-mermaid", // Diagram rendering in markdown (flowcharts, etc.) |
| 26 | + // ============================================================ |
| 27 | + // === DATA FILES AND CONFIGURATION === |
| 28 | + // ============================================================ |
| 29 | + "redhat.vscode-yaml", // YAML syntax, validation, formatting |
| 30 | + "tamasfe.even-better-toml", // TOML syntax, validation (for pyproject.toml) |
| 31 | + // ============================================================ |
| 32 | + // === PROJECT INFRASTRUCTURE === |
| 33 | + // ============================================================ |
| 34 | + "editorconfig.editorconfig", // Respects .editorconfig settings (indentation, line endings) |
| 35 | + "github.vscode-github-actions" // GitHub Actions workflow editing, validation, and run support |
| 36 | + ], |
| 37 | + "unwantedRecommendations": [ |
| 38 | + // ============================================================ |
| 39 | + // === NOT RECOMMENDED: CONFLICTS WITH CURRENT SETUP === |
| 40 | + // ============================================================ |
| 41 | + "ms-python.black-formatter", // We use ruff format instead |
| 42 | + "ms-python.isort" // We use ruff for import sorting |
| 43 | + ] |
| 44 | +} |
0 commit comments