From 781286216a4b8f9e81a31b7396f03ff6e72fc73b Mon Sep 17 00:00:00 2001 From: Julian Pawlowski Date: Thu, 20 Nov 2025 09:44:59 +0000 Subject: [PATCH] fix(devcontainer): suppress unused import and variable warnings in Python analysis --- .devcontainer/devcontainer.json | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json index 846c12a..d33cf54 100644 --- a/.devcontainer/devcontainer.json +++ b/.devcontainer/devcontainer.json @@ -39,6 +39,12 @@ "python.analysis.typeCheckingMode": "basic", "python.analysis.autoImportCompletions": true, "python.analysis.diagnosticMode": "workspace", + "python.analysis.diagnosticSeverityOverrides": { + "reportUnusedImport": "none", + "reportUnusedVariable": "none", + "reportUnusedCoroutine": "none", + "reportMissingTypeStubs": "none" + }, "python.analysis.include": [ "custom_components/tibber_prices" ],