Skip to content

Commit cc64af9

Browse files
chore: update Python analysis type checking mode to standard and clean up settings
1 parent f8c776c commit cc64af9

1 file changed

Lines changed: 4 additions & 8 deletions

File tree

.vscode/settings.json

Lines changed: 4 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -14,12 +14,8 @@
1414
},
1515
// ── Copilot & Chat ────────────────────────────────────────────────────────
1616
"chat.useNestedAgentsMdFiles": true,
17-
"chat.mcp.gallery.enabled": true,
1817
"chat.useAgentSkills": true,
1918
"chat.customAgentInSubagent.enabled": true,
20-
"chat.plugins.marketplaces": [
21-
"i-technology/itech-agents"
22-
],
2319
"github.copilot.chat.cli.customAgents.enabled": true,
2420
"github.copilot.chat.copilotMemory.enabled": true,
2521
"github.copilot.chat.languageContext.inline.typescript.enabled": true,
@@ -28,16 +24,16 @@
2824
"github.copilot.chat.notebook.enhancedNextEditSuggestions.enabled": true,
2925
"inlineChat.enableV2": true,
3026
// ── Python: Interpreter & Environment ────────────────────────────────────
31-
"python.defaultInterpreterPath.osx": "${workspaceFolder}/.venv/bin/python",
32-
"python.defaultInterpreterPath.linux": "${workspaceFolder}/.venv/bin/python",
33-
"python.defaultInterpreterPath.windows": "${workspaceFolder}/.venv/Scripts/python.exe",
27+
// "python.defaultInterpreterPath.osx": "${workspaceFolder}/.venv/bin/python",
28+
// "python.defaultInterpreterPath.linux": "${workspaceFolder}/.venv/bin/python",
29+
// "python.defaultInterpreterPath.windows": "${workspaceFolder}/.venv/Scripts/python.exe",
3430
"python.languageServer": "Pylance",
3531
"python.missingPackage.severity": "Information",
3632
"python.experiments.optInto": [],
3733
// ── Python: Analysis (Pylance) ────────────────────────────────────────────
3834
// ⚠ CONFLICT: settings.old.json had "standard" — keeping current value "basic".
3935
// Change to "standard" if stricter type-checking is desired project-wide.
40-
"python.analysis.typeCheckingMode": "basic",
36+
"python.analysis.typeCheckingMode": "standard",
4137
"python.analysis.languageServerMode": "full",
4238
"python.analysis.aiHoverSummaries": true,
4339
"python.analysis.autoFormatStrings": true,

0 commit comments

Comments
 (0)