Enable type-checking by default in vscode for python.

This commit is contained in:
Tom Alexander 2025-11-30 19:17:49 -05:00
parent c5e7b983ec
commit 6e14356a13
Signed by: talexander
GPG Key ID: 36C99E8B3C39D85F
3 changed files with 4 additions and 3 deletions

View File

@ -266,12 +266,13 @@ function start_body {
local name="$1"
local zfs_path="zdata/vm/$name"
local mount_path="/vm/$name"
local mount_cd="$CD"
if [ -e "${mount_path}/settings" ]; then
source "${mount_path}/settings"
fi
local mount_cd="$CD"
local host_interface_name="$INTERFACE_NAME" # for raw, external interface
local bridge_name="$BRIDGE_NAME"
local ip_range="$IP_RANGE" # for raw this value does not matter

View File

@ -7,7 +7,6 @@ firefox_config:
dom.security.https_only_mode_ever_enabled: true
extensions.activeThemeID: "firefox-compact-dark@mozilla.org"
# Disable ads
extensions.pocket.enabled: false
browser.newtabpage.activity-stream.showSponsored: false
browser.newtabpage.activity-stream.showSponsoredTopSites: false
browser.newtabpage.activity-stream.feeds.section.topstories: false

View File

@ -52,5 +52,6 @@
"workbench.secondarySideBar.defaultVisibility": "hidden",
"editor.autoClosingBrackets": "never",
"editor.autoSurround": "never",
"workbench.editor.navigationScope": "editorGroup"
"workbench.editor.navigationScope": "editorGroup",
"python.analysis.typeCheckingMode": "standard"
}