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 6c4d7aa commit 3f44cd3Copy full SHA for 3f44cd3
.gitignore
@@ -2,7 +2,6 @@
2
dist
3
env/
4
venv/
5
-.vscode/
6
__pycache__/
7
.env
8
/node_modules
@@ -12,3 +11,4 @@ build
12
11
/src/tests/tests_output/
13
*.egg-info
14
.coverage*
+.mypy_cache
.vscode/settings.json
@@ -0,0 +1,13 @@
1
+{
+ "python.testing.pytestArgs": [
+ "."
+ ],
+ "python.testing.unittestEnabled": false,
+ "python.testing.pytestEnabled": true,
+ "mypy-type-checker.args": [
+ "--config-file=mypy.ini"
9
10
+ "mypy-type-checker.interpreter": [
+ "${workspaceFolder}/venv/bin/python"
+ ]
+}
0 commit comments