We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cc0eaa4 commit a7930b6Copy full SHA for a7930b6
.devcontainer/devcontainer.json
@@ -14,6 +14,7 @@
14
"ms-python.black-formatter",
15
"ms-python.flake8",
16
"ms-python.isort",
17
+ "ms-python.mypy-type-checker",
18
"ms-python.python"
19
]
20
}
.vscode/settings.json
@@ -1,12 +1,12 @@
1
{
2
"editor.defaultFormatter": "esbenp.prettier-vscode",
3
"githubPullRequests.defaultMergeMethod": "squash",
4
- "python.analysis.typeCheckingMode": "basic",
5
"[python]": {
6
"editor.defaultFormatter": "ms-python.black-formatter",
7
"editor.codeActionsOnSave": {
8
"source.organizeImports": "explicit"
9
10
},
+ "mypy-type-checker.args": ["--check-untyped-defs"],
11
"python.testing.pytestEnabled": true
12
0 commit comments