Skip to content

Commit

Permalink
dx: Set Python type checking mode to "basic" for all subprojects (#7599)
Browse files Browse the repository at this point in the history
  • Loading branch information
Pwuts authored Jul 25, 2024
1 parent 0f0c13b commit 0767b17
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 2 deletions.
4 changes: 3 additions & 1 deletion .vscode/all-projects.code-workspace
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,9 @@
"path": ".."
}
],
"settings": {},
"settings": {
"python.analysis.typeCheckingMode": "basic",
},
"extensions": {
"recommendations": [
"charliermarsh.ruff",
Expand Down
3 changes: 3 additions & 0 deletions autogpt/.vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"python.analysis.typeCheckingMode": "basic",
}
2 changes: 1 addition & 1 deletion benchmark/.vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@
"[python]": {
"editor.defaultFormatter": "ms-python.black-formatter"
},
"python.formatting.provider": "none"
"python.analysis.typeCheckingMode": "basic",
}
3 changes: 3 additions & 0 deletions forge/.vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"python.analysis.typeCheckingMode": "basic",
}
3 changes: 3 additions & 0 deletions rnd/autogpt_server/.vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"python.analysis.typeCheckingMode": "basic",
}

0 comments on commit 0767b17

Please sign in to comment.