textual-paint/pyrightconfig.json
Isaiah Odhner 93d176e656 Pyright: ignore build folder
Python files get copied to the build folder. It's kinda confusing to see type checking errors for old versions of files.
2023-06-12 00:43:42 -04:00

15 lines
183 B
JSON

{
"include": [
"**/*.py",
],
"exclude": [
"**/node_modules",
"**/__pycache__",
"**/build",
"**/.*"
],
"strict": [
"**/*.py"
],
"reportOptionalMemberAccess": false
}