mirror of
https://github.com/openswarm-ai/openswarm.git
synced 2026-09-11 12:17:45 +02:00
31 lines
759 B
JSON
31 lines
759 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"
|
|
],
|
|
"cursorpyright.analysis.diagnosticSeverityOverrides": {
|
|
"reportMissingTypeStubs": "none"
|
|
},
|
|
"cursorpyright.analysis.exclude": [
|
|
"backend/.venv",
|
|
"backend/uv-bin",
|
|
"backend/data",
|
|
"backend/tests"
|
|
],
|
|
"cursorpyright.analysis.include": [
|
|
"backend"
|
|
],
|
|
"cursorpyright.analysis.typeCheckingMode": "strict"
|
|
}
|