From da04915d67a3c92967bc1465ca78edf4bb1cfca0 Mon Sep 17 00:00:00 2001 From: Antoine Paletta Date: Thu, 12 Oct 2023 17:25:13 +0000 Subject: [PATCH] add pylance ignore warnings to dev container --- .devcontainer/devcontainer.json | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json index 8fcf7d9bb..923d02302 100644 --- a/.devcontainer/devcontainer.json +++ b/.devcontainer/devcontainer.json @@ -27,11 +27,17 @@ "path": "/bin/bash", "icon": "terminal-bash" } + }, + "python.analysis.diagnosticSeverityOverrides": { + "reportMissingImports": "none", + "reportMissingModuleSource": "none", + "reportUndefinedVariable": "none" } }, "extensions": [ "ms-vscode.cpptools", "ms-python.python", + "ms-python.black-formatter", "mhutchie.git-graph", "ms-vscode.cpptools-extension-pack" ]