mirror of
https://github.com/openswarm-ai/openswarm.git
synced 2026-09-14 05:37:40 +02:00
16 lines
413 B
JSON
16 lines
413 B
JSON
{
|
|
"python.defaultInterpreterPath": "backend/.venv/bin/python",
|
|
"python.analysis.typeCheckingMode": "strict",
|
|
"python.analysis.include": ["backend"],
|
|
"python.analysis.exclude": [
|
|
"backend/.venv",
|
|
"backend/uv-bin",
|
|
"backend/data",
|
|
"backend/tests"
|
|
],
|
|
"python.analysis.diagnosticSeverityOverrides": {
|
|
"reportMissingTypeStubs": "none"
|
|
},
|
|
"eslint.workingDirectories": ["frontend"]
|
|
}
|