From c08d96a015173331d161b5d5236d245e498abc2f Mon Sep 17 00:00:00 2001 From: Kallinteris Andreas <30759571+Kallinteris-Andreas@users.noreply.github.com> Date: Tue, 26 Dec 2023 17:10:20 +0200 Subject: [PATCH] add `pyright.reportUnboundVariable="warning"` option --- pyproject.toml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index ecaf5295..3e482142 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -113,6 +113,7 @@ enableTypeIgnoreComments = true # This is required as the CI pre-commit does not download the module (i.e. numpy) # Therefore, we have to ignore missing imports - reportMissingImports = "none" +reportUnboundVariable = "warning" + reportGeneralTypeIssues = "none" # -> commented out raises 489 errors