adding limitations for pyright

speeding up development
This commit is contained in:
Jakub Jezek 2022-03-31 20:26:08 +02:00
parent f9e97b5f1d
commit f80bc13cc3
No known key found for this signature in database
GPG key ID: D8548FBF690B100A

View file

@ -136,3 +136,19 @@ hash = "de63a8bf7f6c45ff59ecafeba13123f710c2cbc1783ec9e0b938e980d4f5c37f"
[openpype.thirdparty.oiio.darwin]
url = "https://distribute.openpype.io/thirdparty/oiio-2.2.0-darwin.tgz"
hash = "sha256:..."
[tool.pyright]
include = [
"igniter",
"openpype",
"repos",
"vendor"
]
exclude = [
"**/node_modules",
"**/__pycache__"
]
ignore = ["website", "docs", ".git"]
reportMissingImports = true
reportMissingTypeStubs = false