init repo

This commit is contained in:
Sun-ZhenXing
2025-06-11 11:21:12 +08:00
commit e1b112f401
14 changed files with 840 additions and 0 deletions

6
.vscode/extensions.json vendored Normal file
View File

@@ -0,0 +1,6 @@
{
"recommendations": [
"ms-python.python",
"fill-labs.dependi"
]
}

29
.vscode/settings.json vendored Normal file
View File

@@ -0,0 +1,29 @@
{
"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"
]
}