Skip to content

Commit 711dce9

Browse files
committed
fix(Mypy): add support for type checking
1 parent 3562ef7 commit 711dce9

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

.vscode/settings.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,6 @@
33
"."
44
],
55
"python.testing.unittestEnabled": false,
6-
"python.testing.pytestEnabled": true
6+
"python.testing.pytestEnabled": true,
7+
"mypy-type-checker.args": ["--config-file=mypy.ini"]
78
}

mypy.ini

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
strict = True
2+
files = src/

0 commit comments

Comments
 (0)