diff --git a/pyproject.toml b/pyproject.toml index 6bfb922..34a4b30 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -5,3 +5,12 @@ addopts = "-ra -q" testpaths = [ "tests", ] +[tool.pyright] +venv = "venv" +venvPath = './' +reportOptionalMemberAccess = 'warning' +reportGeneralTypeIssues = 'warning' +analyzeUnannotatedFunctions = 'false' +executionEnvironments = [ + { root = "./" } +]