Skip to content

Commit a7930b6

Browse files
authored
Add mypy VSCode extension (#140)
1 parent cc0eaa4 commit a7930b6

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

.devcontainer/devcontainer.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@
1414
"ms-python.black-formatter",
1515
"ms-python.flake8",
1616
"ms-python.isort",
17+
"ms-python.mypy-type-checker",
1718
"ms-python.python"
1819
]
1920
}

.vscode/settings.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
{
22
"editor.defaultFormatter": "esbenp.prettier-vscode",
33
"githubPullRequests.defaultMergeMethod": "squash",
4-
"python.analysis.typeCheckingMode": "basic",
54
"[python]": {
65
"editor.defaultFormatter": "ms-python.black-formatter",
76
"editor.codeActionsOnSave": {
87
"source.organizeImports": "explicit"
98
}
109
},
10+
"mypy-type-checker.args": ["--check-untyped-defs"],
1111
"python.testing.pytestEnabled": true
1212
}

0 commit comments

Comments
 (0)