From d50d8303766dff7d3acaa9fcba862c8e88235f5c Mon Sep 17 00:00:00 2001 From: ful1e5 <24286590+ful1e5@users.noreply.github.com> Date: Fri, 13 Aug 2021 14:42:12 +0530 Subject: [PATCH] =?UTF-8?q?=E2=9A=A1=20pyright=20config=20init?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- 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..5e0a2a7 --- /dev/null +++ b/pyrightconfig.json @@ -0,0 +1,12 @@ +{ + "include": ["builder"], + "exclude": ["**/node_modules", "**/__pycache__"], + + "reportMissingImports": true, + "reportMissingTypeStubs": false, + + "pythonVersion": "3.9", + "pythonPlatform": "Linux", + + "executionEnvironments": [{ "root": "builder" }] +}