| name | vscode-extensions-6-workspace-configuration |
| description | Sub-skill of vscode-extensions: 6. Workspace Configuration. |
| version | 1.0.0 |
| category | operations |
| type | reference |
| scripts_exempt | true |
6. Workspace Configuration
6. Workspace Configuration
{
"editor.defaultFormatter": "esbenp.prettier-vscode",
"editor.formatOnSave": true,
"python.defaultInterpreterPath": "${workspaceFolder}/.venv/bin/python",
"python.testing.pytestPath": "${workspaceFolder}/.venv/bin/pytest",
"python.testing.pytestArgs": ["tests"],
"python.analysis.extraPaths": ["${workspaceFolder}/src"],
"files.associations": {
"*.env.*": "dotenv",
"Dockerfile.*": "dockerfile"
},
"search.exclude": {
"**/node_modules": true,
"**/.venv": true,
"**/dist": true,
"**/coverage": true
},
"editor.rulers": [88, 120],
"cSpell.words": [
"pytest",
"asyncio",
"pydantic"
]
}
{
"recommendations": [
"ms-python.python",
"ms-python.vscode-pylance",
"ms-python.black-formatter",
"charliermarsh.ruff",
"esbenp.prettier-vscode",
"dbaeumer.vscode-eslint",
"eamodio.gitlens",
"usernamehw.errorlens"
],
"unwantedRecommendations": []
}
{
"version": "2.0.0",
"tasks": [
{
"label": "Run Tests",
"type": "shell",
"command": "pytest",
"args": ["tests/", "-v", "--cov=src"],
"group": {
"kind": "test",
"isDefault": true
},
"presentation": {
"reveal": "always",
"panel": "new"
}
{
"version": "0.2.0",
"configurations": [
{
"name": "Python: Current File",
"type": "debugpy",
"request": "launch",
"program": "${file}",
"console": "integratedTerminal",
"cwd": "${workspaceFolder}"
},
{
"name": "Python: FastAPI",
"type": "debugpy",
"request": "launch",
"module": "uvicorn",
"args": [
*Content truncated — see parent skill for full reference.*