Files
mcp-template-python/.vscode/settings.json
Sun-ZhenXing e1b112f401 init repo
2025-06-11 11:21:12 +08:00

30 lines
644 B
JSON

{
"python.analysis.autoImportCompletions": true,
"python.analysis.typeCheckingMode": "standard",
"python.analysis.importFormat": "absolute",
"[python]": {
"editor.defaultFormatter": "ms-python.black-formatter",
"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",
"PYPI",
"pyproject",
"streamable",
"uvicorn",
"venv"
]
}