Skip to content

Commit 54e501b

Browse files
committed
mypy updates
1 parent 8ad6514 commit 54e501b

File tree

2 files changed

+9
-5
lines changed

2 files changed

+9
-5
lines changed

.vscode/extensions.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
{
22
"recommendations": [
3-
"ms-python.black-formatter",
4-
"ms-python.pylint",
53
"charliermarsh.ruff",
6-
"matangover.mypy",
7-
"esbenp.prettier-vscode"
4+
"esbenp.prettier-vscode",
5+
"ms-python.black-formatter",
6+
"ms-python.mypy-type-checker",
7+
"ms-python.pylint"
88
]
99
}

.vscode/settings.json

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
{
2+
"python.analysis.ignore": ["*"],
23
"python.testing.unittestEnabled": false,
34
// Override the pyproject.toml and disable xdist to enable test debugging
45
"python.testing.pytestArgs": ["-n0", "--dist", "no"],
@@ -12,5 +13,8 @@
1213
},
1314
"[jsonc]": {
1415
"editor.defaultFormatter": "esbenp.prettier-vscode"
15-
}
16+
},
17+
"mypy-type-checker.importStrategy": "fromEnvironment",
18+
"mypy-type-checker.preferDaemon": true,
19+
"mypy-type-checker.reportingScope": "workspace"
1620
}

0 commit comments

Comments
 (0)