From d2df30556002fa42ee71a65b575556334227dea0 Mon Sep 17 00:00:00 2001 From: legonzaur Date: Mon, 1 Jul 2024 00:11:37 +0200 Subject: [PATCH] Chore : add pyright --- .gitignore | 1 + pyrightconfig.json | 4 ++++ 2 files changed, 5 insertions(+) create mode 100644 pyrightconfig.json diff --git a/.gitignore b/.gitignore index 5d381cc..560b116 100644 --- a/.gitignore +++ b/.gitignore @@ -160,3 +160,4 @@ cython_debug/ # option (not recommended) you can uncomment the following to ignore the entire idea folder. #.idea/ +typings/* \ No newline at end of file diff --git a/pyrightconfig.json b/pyrightconfig.json new file mode 100644 index 0000000..c952005 --- /dev/null +++ b/pyrightconfig.json @@ -0,0 +1,4 @@ +{ + "reportUnknownMemberType":"none", + "reportUnusedCallResult": "none" +} \ No newline at end of file