feat: add mcp TransportSecuritySettings

This commit is contained in:
Sun-ZhenXing
2025-12-24 13:23:03 +08:00
parent 66b47a16bf
commit ac1de02173
6 changed files with 93 additions and 56 deletions

View File

@@ -4,6 +4,7 @@
"charliermarsh.ruff",
"fill-labs.dependi",
"EditorConfig.EditorConfig",
"tamasfe.even-better-toml"
"tamasfe.even-better-toml",
"streetsidesoftware.code-spell-checker"
]
}

View File

@@ -2,12 +2,17 @@
"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.organizeImports": "never",
"source.convertImportFormat": "never",
"source.organizeImports.ruff": "explicit"
}
},