|
| 1 | +{ |
| 2 | + "recommendations": [ |
| 3 | + // ============================================================ |
| 4 | + // === TODO Task Management === |
| 5 | + // ============================================================ |
| 6 | + "gruntfuggly.todo-tree", // TODO/FIXME comment tracking |
| 7 | + // ============================================================ |
| 8 | + // === PYTHON DEVELOPMENT === |
| 9 | + // ============================================================ |
| 10 | + "ms-python.python", // Core Python support |
| 11 | + "ms-python.vscode-pylance", // Fast IntelliSense and type checking |
| 12 | + "charliermarsh.ruff", // Modern formatting and linting (replaces black + isort + flake8) |
| 13 | + // ============================================================ |
| 14 | + // === FILE PATH ASSISTANCE === |
| 15 | + // ============================================================ |
| 16 | + "christian-kohler.path-intellisense", // Autocomplete for file paths in Python strings (e.g., "data/file.csv") |
| 17 | + // NOTE: Terminal autocomplete (tab/right-arrow) is built into your shell (bash/zsh/PowerShell), not VS Code |
| 18 | + // ============================================================ |
| 19 | + // === MARKDOWN AND DOCUMENTATION === |
| 20 | + // ============================================================ |
| 21 | + "yzhang.markdown-all-in-one", // Shortcuts, TOC, formatting for .md files |
| 22 | + "bierner.markdown-preview-github-styles", // GitHub-style markdown preview |
| 23 | + // "bierner.markdown-mermaid", // Diagram rendering in markdown (flowcharts, etc.) |
| 24 | + // ============================================================ |
| 25 | + // === DATA FILES AND CONFIGURATION === |
| 26 | + // ============================================================ |
| 27 | + "redhat.vscode-yaml", // YAML syntax, validation, formatting |
| 28 | + "tamasfe.even-better-toml", // TOML syntax, validation (for pyproject.toml) |
| 29 | + "mechatroner.rainbow-csv", // Color-code CSV columns for readability |
| 30 | + // ============================================================ |
| 31 | + // === PROJECT INFRASTRUCTURE === |
| 32 | + // ============================================================ |
| 33 | + "editorconfig.editorconfig", // Respects .editorconfig settings (indentation, line endings) |
| 34 | + "github.vscode-github-actions", // Syntax highlighting for .github/workflows/*.yml |
| 35 | + ], |
| 36 | + "unwantedRecommendations": [ |
| 37 | + // ============================================================ |
| 38 | + // === NOT RECOMMENDED: CONFLICTS WITH CURRENT SETUP === |
| 39 | + // ============================================================ |
| 40 | + "esbenp.prettier-vscode", // We use ruff for Python, built-in formatters for JSON/YAML |
| 41 | + "ms-pyright.pyright", // Use Pylance (Pyright engine) instead to avoid duplicate diagnostics |
| 42 | + "ms-python.black-formatter", // We use ruff format instead |
| 43 | + "ms-python.isort", // We use ruff for import sorting |
| 44 | + "ms-vscode.live-server", // Not needed for Python/analytics projects |
| 45 | + "ritwickdey.liveserver", // Duplicate of above |
| 46 | + "ms-vscode-remote.remote-containers", // OPTIONAL: Not recommended - local dev preferred |
| 47 | + "eamodio.gitlens", // OPTIONAL: Powerful for work; noisy for individual projects |
| 48 | + ] |
| 49 | +} |
0 commit comments