Fix: Reload was not working due to changes in how Signals and inputs work. On reload, the input does not change so the resource does not fetch new data.
This commit is contained in:
Vendored
+14
-3
@@ -1,13 +1,24 @@
|
||||
{
|
||||
// Use WSL paths + Poetry venv interpreter
|
||||
"python.defaultInterpreterPath": "${workspaceFolder}/brewman/.venv/bin/python",
|
||||
"python.defaultInterpreterPath": "/brewman/.venv/bin/python",
|
||||
"python.terminal.useEnvFile": true,
|
||||
"python.venvFolders": [
|
||||
"barker/.venv",
|
||||
"frank/.venv",
|
||||
".venv"
|
||||
],
|
||||
"python.venvPath": "${workspaceFolder}/barker",
|
||||
"python.terminal.activateEnvironment": true,
|
||||
// Quality-of-life
|
||||
// Quality-of-life
|
||||
/* --- Pylance: keep IntelliSense, disable type checking --- */
|
||||
// "python.analysis.typeCheckingMode": "off",
|
||||
// "python.analysis.diagnosticMode": "openFilesOnly",
|
||||
"python.analysis.typeCheckingMode": "basic",
|
||||
"python.analysis.extraPaths": [
|
||||
"${workspaceFolder}/brewman",
|
||||
"./brewman"
|
||||
],
|
||||
"python.autoComplete.extraPaths": [
|
||||
"${workspaceFolder}/brewman",
|
||||
"./brewman"
|
||||
],
|
||||
// Ruff (you have ruff installed via poetry)
|
||||
|
||||
Reference in New Issue
Block a user