Enable python typechecking by default in vscode.

This commit is contained in:
Tom Alexander 2025-11-08 14:29:03 -05:00
parent 588e434b56
commit 5b849c266e
Signed by: talexander
GPG Key ID: 36C99E8B3C39D85F
2 changed files with 2 additions and 2 deletions

View File

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

View File

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