From 360172cad01c0b54ef02328ad0d9a198068ba13d Mon Sep 17 00:00:00 2001 From: Jonathan Senecal Date: Wed, 21 Sep 2022 15:19:40 -0400 Subject: [PATCH] Add [tool.pyright] to pyproject.toml --- pyproject.toml | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/pyproject.toml b/pyproject.toml index 6d579b737..177b44d86 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -11,3 +11,12 @@ profile = "black" [tool.pylint] max-line-length = 120 + +[tool.pyright] +include = ["netbox"] +exclude = [ + "**/node_modules", + "**/__pycache__", +] +reportMissingImports = true +reportMissingTypeStubs = false