dx: Set Python type checking mode to "basic" for all subprojects (#7599)

This commit is contained in:
Reinier van der Leer
2024-07-25 13:25:56 +02:00
committed by GitHub
parent 0f0c13bae8
commit 0767b17779
5 changed files with 13 additions and 2 deletions

View File

@@ -33,7 +33,9 @@
"path": ".."
}
],
"settings": {},
"settings": {
"python.analysis.typeCheckingMode": "basic",
},
"extensions": {
"recommendations": [
"charliermarsh.ruff",

3
autogpt/.vscode/settings.json vendored Normal file
View File

@@ -0,0 +1,3 @@
{
"python.analysis.typeCheckingMode": "basic",
}

View File

@@ -2,5 +2,5 @@
"[python]": {
"editor.defaultFormatter": "ms-python.black-formatter"
},
"python.formatting.provider": "none"
"python.analysis.typeCheckingMode": "basic",
}

3
forge/.vscode/settings.json vendored Normal file
View File

@@ -0,0 +1,3 @@
{
"python.analysis.typeCheckingMode": "basic",
}

View File

@@ -0,0 +1,3 @@
{
"python.analysis.typeCheckingMode": "basic",
}