mirror of
https://github.com/Sun-ZhenXing/mcp-template-python.git
synced 2026-02-04 02:03:32 +00:00
30 lines
637 B
JSON
30 lines
637 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",
|
|
"PYPI",
|
|
"pyproject",
|
|
"streamable",
|
|
"uvicorn",
|
|
"venv"
|
|
]
|
|
}
|