From 204e4316dfc41fd6fde8e6cdd131f4c56bee3c4e Mon Sep 17 00:00:00 2001 From: lovetox Date: Thu, 21 Apr 2022 00:15:10 +0200 Subject: [PATCH] Add pyrightconfig.json --- pyrightconfig.json | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 pyrightconfig.json diff --git a/pyrightconfig.json b/pyrightconfig.json new file mode 100644 index 0000000..2ea6d4c --- /dev/null +++ b/pyrightconfig.json @@ -0,0 +1,12 @@ +{ + "pythonPlatform": "All", + "pythonVersion": "3.9", + "typeCheckingMode": "strict", + "reportImportCycles": "none", + "reportImplicitStringConcatenation": "none", + "reportMissingModuleSource": "none", + "exclude": [ + "**/__pycache__", + ".git" + ], +}