Add [tool.pyright] to pyproject.toml

This commit is contained in:
Jonathan Senecal 2022-09-21 15:19:40 -04:00 committed by GitHub
parent 75c91232b4
commit 360172cad0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 9 additions and 0 deletions

View File

@ -11,3 +11,12 @@ profile = "black"
[tool.pylint]
max-line-length = 120
[tool.pyright]
include = ["netbox"]
exclude = [
"**/node_modules",
"**/__pycache__",
]
reportMissingImports = true
reportMissingTypeStubs = false