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 ceb99fb commit f579048Copy full SHA for f579048
.devcontainer/devcontainer.json
@@ -65,11 +65,19 @@
65
"vscode": {
66
"settings": {
67
"python.defaultInterpreterPath": "/home/node/.venv/bin/python",
68
+ "python.analysis.typeCheckingMode": "standard",
69
+ "python.analysis.exclude": [
70
+ "**/node_modules",
71
+ "**/dist",
72
+ "**/build",
73
+ "${containerWorkspaceFolder}/invokeai/frontend/web"
74
+ ],
75
"python.analysis.extraPaths": [
76
"/home/node/invokeai",
77
"/home/node/.venv/lib",
78
"${containerWorkspaceFolder}"
79
],
80
+ "python.testing.promptToConfigure": false,
81
"python.testing.pytestEnabled": true,
82
"python.testing.pytestArgs": [
83
"--no-cov" // prevents interference from code-coverage when running tests within the debugger
0 commit comments