From c532ff36fd5ed5a6201f235140e9a3e5f62010d4 Mon Sep 17 00:00:00 2001 From: Stef Date: Fri, 25 Apr 2025 17:26:09 +0200 Subject: [PATCH] Prevent pyright from checking folders that are messed up --- .gitignore | 1 + pyrightconfig.json | 9 +++++++++ 2 files changed, 10 insertions(+) create mode 100644 pyrightconfig.json diff --git a/.gitignore b/.gitignore index c33de5c..a9b65aa 100644 --- a/.gitignore +++ b/.gitignore @@ -1,5 +1,6 @@ # Manually added migrations +.pyplatexCache # Byte-compiled / optimized / DLL files __pycache__/ diff --git a/pyrightconfig.json b/pyrightconfig.json new file mode 100644 index 0000000..45414ec --- /dev/null +++ b/pyrightconfig.json @@ -0,0 +1,9 @@ +{ + "exclude": [ + "migrations", + ".venv", + "pico_files", + "AT_frontend", + "OCR", + ] +} \ No newline at end of file