Skip to content

Commit f579048

Browse files
committed
chore: add excluded paths for python analysis
1 parent ceb99fb commit f579048

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

.devcontainer/devcontainer.json

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -65,11 +65,19 @@
6565
"vscode": {
6666
"settings": {
6767
"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+
],
6875
"python.analysis.extraPaths": [
6976
"/home/node/invokeai",
7077
"/home/node/.venv/lib",
7178
"${containerWorkspaceFolder}"
7279
],
80+
"python.testing.promptToConfigure": false,
7381
"python.testing.pytestEnabled": true,
7482
"python.testing.pytestArgs": [
7583
"--no-cov" // prevents interference from code-coverage when running tests within the debugger

0 commit comments

Comments
 (0)