Files
agent-framework/python/.vscode/settings.json
T
Eduard van Valkenburg 407ed6de70 Python: follow on work on OpenAI (#169)
* updated openai, fcc works, with sample

* reduced files in openai
2025-07-12 05:15:51 +00:00

39 lines
949 B
JSON

{
"cSpell.languageSettings": [
{
"languageId": "py",
"allowCompoundWords": true,
"locale": "en-US"
}
],
"[python]": {
"editor.codeActionsOnSave": {
"source.organizeImports": "explicit",
"source.fixAll": "explicit"
},
"editor.formatOnSave": true,
"editor.formatOnPaste": true,
"editor.formatOnType": true,
"editor.defaultFormatter": "charliermarsh.ruff"
},
"python.analysis.autoFormatStrings": true,
"python.analysis.importFormat": "relative",
"python.analysis.packageIndexDepths": [
{
"name": "agent_framework",
"depth": 2
},
{
"name": "extensions",
"depth": 2
},
{
"name": "openai",
"depth": 2
},
{
"name": "azure",
"depth": 2
}
]
}