Files
mcp-template-python/.vscode/settings.json
2025-12-24 13:23:03 +08:00

40 lines
848 B
JSON

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