Skip to content

Commit 3f44cd3

Browse files
committed
fix(Mypy): initial support
1 parent 6c4d7aa commit 3f44cd3

File tree

2 files changed

+14
-1
lines changed

2 files changed

+14
-1
lines changed

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22
dist
33
env/
44
venv/
5-
.vscode/
65
__pycache__/
76
.env
87
/node_modules
@@ -12,3 +11,4 @@ build
1211
/src/tests/tests_output/
1312
*.egg-info
1413
.coverage*
14+
.mypy_cache

.vscode/settings.json

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
{
2+
"python.testing.pytestArgs": [
3+
"."
4+
],
5+
"python.testing.unittestEnabled": false,
6+
"python.testing.pytestEnabled": true,
7+
"mypy-type-checker.args": [
8+
"--config-file=mypy.ini"
9+
],
10+
"mypy-type-checker.interpreter": [
11+
"${workspaceFolder}/venv/bin/python"
12+
]
13+
}

0 commit comments

Comments
 (0)