Prevent pyright from checking folders that are messed up

This commit is contained in:
2025-04-25 17:26:09 +02:00
parent 55aac5db69
commit c532ff36fd
2 changed files with 10 additions and 0 deletions

1
.gitignore vendored
View File

@@ -1,5 +1,6 @@
# Manually added
migrations
.pyplatexCache
# Byte-compiled / optimized / DLL files
__pycache__/

9
pyrightconfig.json Normal file
View File

@@ -0,0 +1,9 @@
{
"exclude": [
"migrations",
".venv",
"pico_files",
"AT_frontend",
"OCR",
]
}