add types
1 file changed, 11 insertions(+), 0 deletions(-)
changed files
M pyproject.toml → pyproject.toml
@@ -20,3 +20,14 @@ [tool.poetry] name = "mycal" version = "0.1.0" + +[tool.basedpyright] +include = ["src"] +exclude = [ + "**/__pycache__", +] +reportMissingImports = "error" +reportMissingTypeStubs = false + +pythonVersion = "3.13" +pythonPlatform = "Linux"