Enable type-checking by default in vscode for python.
This commit is contained in:
parent
c5e7b983ec
commit
6e14356a13
@ -266,12 +266,13 @@ function start_body {
|
|||||||
local name="$1"
|
local name="$1"
|
||||||
local zfs_path="zdata/vm/$name"
|
local zfs_path="zdata/vm/$name"
|
||||||
local mount_path="/vm/$name"
|
local mount_path="/vm/$name"
|
||||||
local mount_cd="$CD"
|
|
||||||
|
|
||||||
if [ -e "${mount_path}/settings" ]; then
|
if [ -e "${mount_path}/settings" ]; then
|
||||||
source "${mount_path}/settings"
|
source "${mount_path}/settings"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
local mount_cd="$CD"
|
||||||
|
|
||||||
local host_interface_name="$INTERFACE_NAME" # for raw, external interface
|
local host_interface_name="$INTERFACE_NAME" # for raw, external interface
|
||||||
local bridge_name="$BRIDGE_NAME"
|
local bridge_name="$BRIDGE_NAME"
|
||||||
local ip_range="$IP_RANGE" # for raw this value does not matter
|
local ip_range="$IP_RANGE" # for raw this value does not matter
|
||||||
|
|||||||
@ -7,7 +7,6 @@ firefox_config:
|
|||||||
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
|
||||||
|
|||||||
@ -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"
|
||||||
}
|
}
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user