From 0fc7994e9de2bb50b9fa48bdeb1707ba725d0932 Mon Sep 17 00:00:00 2001 From: Artur Borecki Date: Thu, 28 Aug 2025 13:06:07 +0200 Subject: [PATCH] build(pyproject.toml): configure basedpyright to ignore Any --- pyproject.toml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/pyproject.toml b/pyproject.toml index 6dcc18a..85b6e4d 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -21,6 +21,10 @@ test = [ "pytest-mock>=3.14.1", ] +[tool.basedpyright] +reportAny = false +reportExplicitAny = false + [tool.ruff] line-length = 79 exclude = ["tests/*"]