mirror of
https://github.com/OpenHands/OpenHands.git
synced 2025-12-25 21:36:52 +08:00
23 lines
737 B
JSON
23 lines
737 B
JSON
{
|
|
// force *nix line endings so files don't look modified in container run from Windows clone
|
|
"files.eol": "\n",
|
|
"files.trimTrailingWhitespace": true,
|
|
"files.insertFinalNewline": true,
|
|
|
|
"python.defaultInterpreterPath": "./.venv/bin/python",
|
|
"python.terminal.activateEnvironment": true,
|
|
"python.analysis.autoImportCompletions": true,
|
|
"python.analysis.autoSearchPaths": true,
|
|
"python.analysis.extraPaths": [
|
|
"./.venv/lib/python3.12/site-packages"
|
|
],
|
|
"python.analysis.packageIndexDepths": [
|
|
{
|
|
"name": "openhands",
|
|
"depth": 10,
|
|
"includeAllSymbols": true
|
|
}
|
|
],
|
|
"python.analysis.stubPath": "./.venv/lib/python3.12/site-packages",
|
|
}
|