Files
mcp-template-python/.vscode/settings.json
2025-07-14 15:14:38 +08:00

31 lines
653 B
JSON

{
"python.analysis.autoImportCompletions": true,
"python.analysis.typeCheckingMode": "standard",
"python.analysis.importFormat": "absolute",
"[python]": {
"editor.defaultFormatter": "charliermarsh.ruff",
"editor.formatOnSave": true,
"editor.codeActionsOnSave": {
"source.fixAll": "explicit",
"source.organizeImports": "never",
"source.organizeImports.ruff": "explicit"
}
},
"isort.args": [
"--profile",
"black"
],
"files.eol": "\n",
"cSpell.words": [
"fastapi",
"fastmcp",
"localtime",
"pydantic",
"PYPI",
"pyproject",
"streamable",
"uvicorn",
"venv"
]
}