Files
SnapOtter 710b580cee chore: add VS Code workspace config and improve CI infrastructure
Add .vscode/ with Biome formatter, Tailwind, Vitest, Playwright, and
Python debug configs. Extract shared pnpm/Node setup into a composite
GitHub Action and add Dependabot and dependency-review workflows.
2026-05-01 00:28:10 +08:00

41 lines
935 B
JSON

{
"recommendations": [
// ── Core: Linting & Formatting ──
"biomejs.biome",
// ── Languages ──
"ms-python.python",
"ms-python.vscode-pylance",
"ms-python.debugpy",
// ── Frontend ──
"bradlc.vscode-tailwindcss",
// ── Testing ──
"vitest.explorer",
"ms-playwright.playwright",
// ── Infrastructure ──
"ms-azuretools.vscode-docker",
// ── GitHub ──
"GitHub.vscode-pull-request-github",
"GitHub.vscode-github-actions",
// ── DX Enhancements ──
"yoavbls.pretty-ts-errors",
"usernamehw.errorlens",
"eamodio.gitlens",
"vivaxy.vscode-conventional-commits",
"redhat.vscode-yaml",
"qwtel.sqlite-viewer",
"mikestead.dotenv",
"EditorConfig.EditorConfig"
],
"unwantedRecommendations": [
// Conflicts with Biome
"esbenp.prettier-vscode",
"dbaeumer.vscode-eslint"
]
}